* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    background-color: #e6e6e6;
    overflow-x: hidden;
}

div {
    display: flex;
}

.main {
    width: 100vw;
}

.page_main {
    padding: 5rem;
    flex-direction: column;
    height: 100%;
}

.auth_main {
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.header {
    height: 4rem;
    width: 100vw;
    justify-content: end;
    align-items: center;
}

.header a {
    color: black;
    text-decoration: none;
    font-size: 1.25rem;
}

.header a:hover {
    border-bottom: 3px dashed #3d62f5;
}

.header ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-right: 3rem;
}

.header #current_page {
    border-bottom: 3px solid #3d62f5;
}

.auth_center {
    background-color: #e6e6e6;
    border-radius: 25px;
    height: 35rem;
    width: 30rem;
    box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .25);
    align-items: center;
    flex-direction: column;
    padding: 3rem;
}

.auth_center h1 {
    margin-bottom: 3rem;
}

.auth_center h5 {
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, .75);
}

.auth_center form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth_center img {
    height: 2rem;
}

.auth_center_input {
    width: 100%;
    flex-direction: column;
    margin-top: 2rem;
}

.auth_center_signup {
    margin-top: 1rem;
}

.auth_center_input input {
    background-color: #e6e6e6;
    width: 100%;
    border: none;
    padding-left: .5rem;
    height: 2rem;
}

.auth_center_input hr {
    background-color: rgba(0, 0, 0, .25);
    height: 1.5px;
    margin-top: .25rem;
    border: none;
}

.auth_center button {
    width: 80%;
    height: 2.5rem;
    background-color: #3d62f5;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 2rem;
}

.auth_center button:hover {
    background-color: #6482f7;
    transition: .25s ease-in-out;
}

.auth_center_under {
    margin-top: 1.5rem;
    width: 100%;
}

.auth_center_under input {
    margin-right: .5rem;
}

.auth_center_under label {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .5);
    display: flex;
    width: 100%;
    align-items: center;
}

.auth_center_under div {
    width: 100%;
    justify-content: end;
    font-size: .75rem;
    font-weight: 600;
    color: #3d62f5;
    text-decoration: none;
}

.auth_center_under a {
    color: #3d62f5;
    text-decoration: none;
}

.auth_center_footer {
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 10%;
    font-size: .75rem;
}

.auth_center_footer p {
    margin-right: .25rem;
    color: rgba(0, 0, 0, .75);
}

.auth_center_footer a {
    font-weight: 600;
    text-decoration: none;
    color: #3d62f5;
}

.page_title {
    flex-direction: column;
    align-items: center;
}

.page_title h1 {
    font-size: 3rem;
    text-align: center;
}

#home_title {
    align-items: start;
}

.page_description {
    flex-direction: column;
    margin-top: 2.5rem;
}

.page_description p {
    margin-top: 1rem;
    font-size: 1.25rem;
    text-align: justify;
}

#home_button_type_container {
    height: 100%;
    align-items: center;
}

.button_1 {
    margin-top: 3rem;
    height: 2.5rem;
    width: 8rem;
    border-radius: 5px;
    border: none;
    background-color: #3d62f5;
    cursor: pointer;
}

.button_1 a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.button_1:hover {
    background-color: #6482f7;
    transition: .25s ease-in-out;
}

.types_of_platform_container {
    flex-direction: column;
    width: 25rem;
    border-radius: 25px;
    background-color: #F5F5F5 ;
    box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .25);
}

.types_of_platform_container img {
    border-radius: 25px 25px 0 0;
    width: 100%;
}

.description_container {
    flex-direction: column;
    padding: 2rem;
}

#types_description {
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3rem;
}

.types_of_platform_description {
    background-color: #F5F5F5 ;
    box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .25);
    padding: 5rem;
    border-radius: 25px;
    width: 100%;
}

.examples_container {
    margin-top: 3rem;
    flex-direction: column;
}

.examples {
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    background-color: #e6e6e6;
    border-radius: 15px;
}

#gallery_title {
    align-items: start;
}

#gallery_description {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.lab_outputs {
    height: 10rem;
    width: 20rem;
    background-color: #e6e6e6;
    border-radius: 25px;
    box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .25);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page_description_gallery {
    flex-direction: row;
    gap: 1rem;
}

.page_description_gallery img {
    width: 100%;
    height: fit-content;
    box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .25);
    border-radius: 25px;
}

#portfolio_main {
    width: 100vw;
    height: fit-content;
    align-items: center;
}

#portfolio_main #left_section {
    height: calc(100vh - 4rem);
    width: 20rem;
    padding: 3rem;
    justify-content: center;
    align-items: center;
}

#portfolio_main #left_section #contact_options {
    height: 25rem;
    width: 5rem;
    position: fixed;
    border-radius: 25px;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    border: rgba(0, 0, 0, .25) 1px solid;
    background-color: rgba(255, 255, 255, .25);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#portfolio_main #left_section #contact_options hr {
    width: calc(100% - 2rem);
    height: 2px;
    border: none;
    background-color: rgba(0, 0, 0, .25);
    margin-bottom: .5rem;
}

#portfolio_main #left_section #contact_options img{
    height: 2rem;
}

#portfolio_main #right_section {
    width: 100%;
    height: 100%;
    padding: 5em 5rem 5rem 0;;
}

#portfolio_main #right_section #floatation_thingy {
    flex-direction: column;
    padding: 3rem;
    background-color: #e6e6e6;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .25);
}

#portfolio_main #right_section #floatation_thingy h1 {
    font-size: 3rem;
}

#portfolio_main #right_section #floatation_thingy #img_head p {
    margin-top: 1.5rem;
}

#portfolio_main #right_section #profile_img {
    height: 15rem;
    border-radius: 100%;
    margin-right: 3rem;
    border: rgba(0, 0, 0, .25) 5px solid;
}

#portfolio_main #right_section #educ_bg {
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 3rem;
    padding-bottom: 0;
}

#portfolio_main #right_section #educ_bg h3 {
    margin-bottom: 1rem;
}

#portfolio_main #right_section #skills_showcase {
    height: 100%;
    width: 100%;
    flex-direction: column;
    padding: 3rem;
    padding-bottom: 0;
}

#portfolio_main #right_section #skills_container {
    gap: 1rem;
    margin-top: 1rem;
}

#portfolio_main #right_section #skills_container img {
    width: 2rem;
}