@media screen and (max-width: 999px){
    nav {
        height: 8vh;
    }
    #desktop-nav {
        display: none;
    }
    #mobile-nav {
        display: flex;
    }

    .arrow-icon {
        display: none;
    }

    #profile {
        padding-top: 2vh;
        height: 92vh;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 2rem;
    }

    .section__pic-container {
        aspect-ratio: 1 / 1;
        width: fit-content;
        height: 35vh;
        align-self: center;
    }

    .section__text {
        padding-bottom: 5vh;
    }

    .section__text__p1 {
        font-size: 3rem;
    }

    .section__text__p2 {
        font-size: 3.5rem;
    }

    .title {
        font-size: 4rem;
    }

    .socials-container {
        gap: 5rem;
        margin: 3rem;
    }

    .icon {
        height: 5rem;
    }

    .btn-container {
        flex-direction: column;
        gap: 2rem;
        margin: 3rem;
    }

    .btn {
        height: 8rem;
        width: 27.5rem;
        font-size: 2.75rem;
        border-radius: 5rem;
        border: 0.2rem solid;
    }

    #about {
        height: fit-content;
    }

    .section-container {
        padding-top: 4vh;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .about_img {
        border-radius: 50%;
    }

    .edu-icon {
        height: 5rem;
    }

    .experience-details-container {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .about-containers {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .details-container{
        max-width: 90vw;
        gap: 1rem;
        border: 0.2rem solid;
    }

    h3 {
        font-size: 2.5rem;
    }

    p {
        font-size: 2.5rem;
    }

    .project-title {
        font-size: 3rem;
    }

    .proj-img {
        width: 90%;
        height: max-content;
    }

    .skill-containers {
        flex-wrap: nowrap;
        flex-direction: column;
        flex: 1;
    }

    .skill-title {
        font-size: 2.5rem;
    }

    .skillsets {
        gap: 0.5rem;
    }

    .skillset {
        font-size: 2.5rem;
        border: 0.2rem solid;
    }

    #contactme {
        display: flex;
        height: fit-content;
        justify-items: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 10rem;
        margin-bottom: 10rem;
    }

    .contact-upper-container {
        display: flex;
        flex-direction: column;
        width: fit-content;
        border: 0.2rem solid;
    }

    .contact-container {
        margin: 1rem;
    }

    .contact-container p {
    font-size: 2.5rem;
    }

    footer {
        height: fit-content;
    }

    .footer-nav-links, .nav-links {  
        padding-top: 2rem;      
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 3rem;
        text-align: center;
    }

    .desktop-footer-msg {
        display: none;
    }

    .mobile-footer-msg {
        margin-top: 5rem;
        padding-bottom: 3rem;
        display: flex;
        flex-direction: column;
        font-size: 2.5rem;
    }
}