* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

:root{
	--primary: #1592e6;
	--secondary: #cae;
	--caption: #fff;
}

.header {
    width: 100%;
    height: 80px;
    background-color: #1e1e1e;
    box-shadow: 0 0.1vh 5vh rgba(0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.iheader {
    width: 1250px;
    height: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    width: 180px;
    padding: 8px;
}

.nav {
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.nav a {
    display: flex;
    padding: 0px 20px;
    align-items: center;
    color: #ffffff;
}

.nav a:hover {
    display: flex;
    padding: 0px 20px;
    align-items: center;
    color: #cccccc;
}

.nav img{
	max-height: 30px;
}

.main {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: center; /* Center items horizontally */
    height: calc(50vh - 80px); /* Adjust for header height if needed */
    font-family: "Poppins", sans-serif;
    text-align: center;
    min-height: 80vh;
    padding-top: 30vh; /* Add top padding to account for the fixed header */
    padding-left: 50px; /* Keep horizontal padding */
    padding-right: 50px; /* Keep horizontal padding */
    color: #ffffff;
    margin: 0% 20% 0% 20%;
}

.bottompage {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: center; /* Center items horizontally */
    height: 100px; /* Adjust for header height if needed */
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding-top: 100px; /* Add top padding to account for the fixed header */
    padding-left: 50px; /* Keep horizontal padding */
    padding-right: 50px; /* Keep horizontal padding */
    background-color: #1e1e1e;
    color: #ffffff;
}

.bottompage a:link{
    color: #00b7ff;
    text-decoration: none;
}

.title{
    font-weight: 500;
    font-size: 4vh
}

.content{
    font-weight: 400;
    margin: 0% 32% 0% 32%;
    text-align: center;
}

.image img {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% + 20vh);
    min-width: 100vw;
    aspect-ratio: 16 / 9;
    background-image: url("res1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    margin-left: -10px;
    filter: blur(5px);
}

.button {
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #dddddd;;
    color: #000000;
    border-radius: 20px;
  }

.button:hover {
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #ffffff;
    color: #00b7ff;
    border-radius: 20px;
}

.downloadbutton {
    border: none;
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #dddddd;;
    color:#1e1e1e;
    width: 800px;
  }

.downloadbutton:hover {
    border: none;
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #cecece;;
    color:#000000;
    width: 800px;
}

.downloadtitle{
    text-align: left;
    align-items: left;
    font-weight: 500;
}

.textthing textarea{
    width: 860px;
    height: 200px;
    resize: both;
    font-size: 11.5px;
}

.modules {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: center; /* Center items horizontally */
    height: 100%; /* Adjust for header height if needed */
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding-top: 100px; /* Add top padding to account for the fixed header */
    padding-left: 50px; /* Keep horizontal padding */
    padding-right: 50px; /* Keep horizontal padding */
    padding-bottom: 25px;
    background-color: #f0f0f0;
    color: #1e1e1e;
    min-height: 80vh;
}

.modules h4{
    margin-right: 40vh;
    margin-left: 40vh;
}


.accounticon img{
    width: 50px;
    height: 50px;
	max-height: 50px;
    border-radius: 50%;
}

.pfp img{
    width: 100px;
    height: 100px;
    background-color: gray;
    border-radius: 50%;
}

.genericbutton{
    border: none;
    align-items: center;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #dddddd;;
    color:#1e1e1e;
    width: 190px;
}

.genericbutton:hover{
    border: none;
    align-items: center;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: #cecece;;
    color:#000000;
    width: 190px;
}

.cssupdate1{
	display: none;
}