@media screen and (max-width: 1200px) {
    #desktop-nav {
        display: none;
    }
    #hamburger-nav {
        display: flex;
    }
    section {
        margin: 0 5rem;
    }
}
@media screen and (max-width: 800px) {
    section {
        margin: 0 2rem;
        height: auto;
    }
    .section-container, .description-containers {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .section_pic-container {
        width: 250px;
        height: 250px;
        margin: 0 auto 2rem auto;
    }
    .about-container {
        margin-top: 0;
    }
    #profile {
        height: auto;
        flex-direction: column;
        margin-bottom: 3rem;
    }
    .experience-details-container {
        margin-top: 2rem;
    }
}