@media screen and (max-width: 1200px) {
    #desktop-nav {
        display: none;
    }
    #mobile-nav {
        display: flex;
    }

    nav {
        padding-right: 3vw;
    }
    
    .headshot {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .name {
        font-size: 3rem;
    }
    
    .about-bubble {
        padding: 15px;
        width: 80%;
        align-self: center;
    }

    .headshot {
        width: 50%;
    }

    .about-main {
        flex-direction: column;
    }

    .about-footer {
        flex-direction: column;
        align-items: center;
    }

    .project-title-bar {
        flex-direction: column;
    }

    .project-title {
        width: 95%;
    }

    .project-image {
        width: 95%;
    }

    .project-button-container {
        padding-top: 10px;
        align-self: center;
    }

    .contact-form-container {
        width: 70%;
    }

    .contact-form-submit-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}