#section-1 {
    flex-direction: column;
    position: relative;
}


#landing-page-main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
}

#circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
}

.circle {
    border-radius: 50%;
    background-color: transparent;
    border-top: 3px solid transparent;
    border-left: 3px solid #99d6ea;
    border-right: 3px solid #99d6ea;
    border-bottom: 3px solid #99d6ea;
    justify-content: center;
    align-items: center;
}

#circle-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    
    width: 100%;
    aspect-ratio: 1;
    max-width: 240px;
    max-height: 240px;
    animation: gyro 50s infinite;
    animation-timing-function: linear;
}

#circle-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    
    width: 100%;
    aspect-ratio: 1;
    max-width: 260px;
    max-height: 260px;
    animation: invertgyro 70s infinite;
    animation-timing-function: linear;
}

#full-circle {
    width: 100%;
    aspect-ratio: 1;
    max-width: 280px;
    max-height: 280px;
    border-top: 3px solid #99d6ea;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes invertgyro {
    from{
        transform: translate(-50%, -50%) rotate(45deg);
    }
    to{
        transform: translate(-50%, -50%) rotate(-315deg);
    }
}

@keyframes gyro {
    from{
        transform: translate(-50%, -50%) rotate(-135deg);
    }
    to{
        transform: translate(-50%, -50%) rotate(225deg);
    }
}

#landing-page-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    width: 210px;
}

#landing-page-title-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

#current-job{
    padding: 0 50px;
}

#landing-page-footer {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}

#landing-page-footer-text {
    color: #e1e7ec;
    font-weight: 400;
    letter-spacing: 6px;
}

/* Section 2 */

#section-2 {
    padding-top: 80px;
}

#section-2-container {
    display: flex;
    justify-content: center;
    width: 70%;
    /* margin-left: 20px;
    margin-right: 20px; */
    padding-bottom: 20px;
}

#section-2-wrapper {
    display: flex;
    max-width: 1600px;
}

button {
    border: none;
    background: none;
}

#project-selection-container {
    background-color: transparent;
    font-size: 12px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-text.project-selection-menu {
    display: block;
    letter-spacing: 3px;
    text-align: right;
}

.project-overview-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    padding-right: 10px;
    overflow: auto;
}

.project-overview-container::-webkit-scrollbar {
    width: 1.5px;
}

.main-text.year {
    font-size: 12px;
}



.main-text.project-title {
    font-weight: 500;
}

.image {
    border-radius: 5px;
}

.main-text.sub-title {
    letter-spacing: 4px;
}

.sub-title {
    padding-bottom: 5px;
    font-size: 14px;
}


.project-selection-menu.active {
    color: #fca6d1;
}

.image {
    width: 100%;
    max-width: 1600px;
}

@media (max-width:500px) {

    #landing-page-main-wrapper {
        gap: 10px;
    }

    #section-2-wrapper{
        flex-direction: column;
    }

    #section-2-container{
        width: 60%;
    }

    #project-selection-container{
        margin: 0;
        margin-bottom: 20px;
        margin-top: 10px;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .main-text.project-selection-menu{
        text-align: center;
        width: auto;
    }

    .project-overview-container{
        max-width: 400px;
    }

     #section-2{
        padding-top:60px;
    }

    .project-title.main-text{
        font-size: 16px;
    }

    .main-text.project-selection-menu.menu{
        font-size: 10px;
    }

    #landing-page-footer-text{
        font-size: 10px;
    }

    #circle-container {
        max-width: 220px;
        max-height: 220px;
    }

    .circle{
        border-radius: 50%;
        background-color: transparent;
        border-top: 1.5px solid transparent;
        border-left: 1.5px solid #99d6ea;
        border-right: 1.5px solid #99d6ea;
        border-bottom: 1.5px solid #99d6ea;
    }

    #circle-1 {
        max-width: 190px;
        max-height: 190px;
    }

    #circle-2 {
        max-width: 205px;
        max-height: 205px;
    }

    #full-circle {
        max-width: 220px;
        max-height: 220px;
        border-top: 1.5px solid #99d6ea;
    }

    #landing-page-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: transparent;
        width: 155px;
    }

    #name.main-text{
        font-size: 18px;
    }

    #current-job.secondary-text{
        font-size: 10px;
    }
}



@media (max-width:400px){
    

    
}