@media screen and (max-width: 600px) {
    :root {
        --text: #1F1406;
        --background: #FDF9F3;
        --primary: #95671D;
        --secondary: #B6CE9F;

        --heading-font: "Marcellus SC", serif;
    }

    #nameContainer {
        display: flex;
        align-items: center;

        width: 70%;

        padding: 10px 20px;

        font-size: 18px;
        letter-spacing: 1.4px;
    }

    #socialsContainer {
        display: none;
    }

    #logoContainer {
        display: flex;
        justify-content: end;
        align-items: center;

        padding: 10px 20px;

        width: 30%;
    }

    #logo {
        display: none;
        opacity: 0;
        width: 40px;
        z-index: 11;
    }

    #logoHamburger {
        opacity: 1 !important;
        width: 40px;
        z-index: 11;
        filter: invert(100%);
        -webkit-filter: invert(100%);
    }

    #contentContainer {
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;

        width: 100%;
        height: 100%;

        z-index: 2;
    }

    #headshotSVG {
        opacity: 0;
        position: absolute;

        width: 80vw;
        height: 80vw;

    }

    .row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;

        width: 100%;
        height: 50%;
    }

    .bl {
        display: none !important;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;

        padding-left: 5%;
        padding-bottom: 8%;

        font-weight: bold;
    }

    #infoContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;

        position: absolute;
        bottom: 0;

        width: 100%;
        height: 85%;
    }

    #aboutContainer {
        overflow: scroll;
    }

    .infoBox {
        width: 100%;
        height: 100%;
    }


    .tl {
        justify-content: flex-end;
        align-items: flex-start;

        padding-left: 4%;
        padding-top: 0;
        padding-bottom: 7%;

        font-size: 26px !important;
    }

    .tl .infoHeader {
        font-size: 23px;
        letter-spacing: 0.2cap;
    }

    .secondrow {
        height: 30vh !important;
    }

    .firstrow {
        height: 70%;
    }

    #logoDropdown {
        position: absolute;
        display: block;
        filter: invert(100%) grayscale(100%);
        -webkit-filter: invert(100%) grayscale(100%);
        width: 50px;
        top: 20px;
        right: 20px;
    }

    #navlinksDropdown {
        /* display: none; */
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background-color: var(--text);

        z-index: 10;
        color: var(--background)
    }

    .navLink img {
        filter: invert(100%);
        -webkit-filter: invert(100%);
    }

    .siteNav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        width: 100%;
    }

    .siteNavLink {
        margin-bottom: 10px;
        font-size: 30px;
    }

    .siteNavLink a {
        color: var(--background) !important;
        font-weight: bold;
    }

    #socialsContainerDropdown {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #spotlight {
        margin: 0;
    }

    fieldset {
        font-size: 15px;
    }

    .paragraphContainer {
        width: 100% !important;
        font-size: 15px !important;
    }

    .blankContainer {
        display: none;
    }
}

#logoHamburger {
    opacity: 0;	
}