html {
    background-color: rgb(248, 211, 163);
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-y: visible;
    overflow-x: hidden;
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    #leftcontainer {
        display: flex;
        width: 53vw;
        height: 100vh;
        align-items: center;
        margin-left: 20px;
        position: absolute;
        z-index: 0;
    }
    
    #rightcontainer {
        width: 41vw;
        height: 100%;
        margin-right: 20px;
        position: absolute;
        right: 0;
        overflow: hidden;
    }
    
    #headshot {
        display: block;
        width: 53vw;
        height: auto;
        outline: 2.5px rgb(64 54 46) solid;
        z-index: 0;
    }
    
    #header {
        font-family: "filmotype-yukon", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 17vw;
        margin-top: 0;
        margin-bottom: -50px;
        width: max-content;
        color: rgb(64 54 46);
    }
    
    #container1 {
        display: inline-block;
        width: 770px;
        height: auto;
    }
    
    #ringcontainer {
        width: 18vw;
        margin: 1em;
        margin-right: 1vw;
        float: right;
        /* position: absolute; */
        height: 18vw;
        border-radius: 50%;
        -webkit-shape-outside:circle(50%);
        shape-outside:circle(50%);
        /* outline: 2px solid red; */
        transform: rotate(15deg);
    }
    
    #careercircle {
        width: inherit;
        z-index: 1;
        /* outline: 2px solid red; */
        position: absolute;
        animation: rotate 20s linear infinite;
    }
    
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        } to {
            transform: rotate(360deg);
        }
    }
    
    #isa {
        z-index: 0;
        display: flex;
        /* outline: 2px solid red; */
        margin-top: 0.5vw;
        text-align: center;
        justify-content: center;
        align-items: center;
        height: 100%;
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 2.4vw;
        line-height: 1;
        color: rgb(64 54 46);
        filter: drop-shadow(1.5px 1.5px white);
        text-justify: inter-character;
    }
    
    #hometext {
        /* display: inline; */
        font-family: "roc-grotesk", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 2vw;
        line-height: 1.1;
        padding-right: 3vw;
        padding-top: 16vh;
        color: rgb(64 54 46);
    }
    
    #hometext span {
        font-weight: 600;
    }
    
    #container2 {
        margin-top: 7.5vw;
    }

    #burger {
        display: none;
    }
    
    #navbar {
        /* outline: 2px solid red; */
        width: 100vw;
        height: 15vh;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color:rgb(64 54 46);
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 1.5vw;
        z-index: 2;
        overflow: hidden;
        background-image: linear-gradient(rgba(248, 211, 163, 1), rgba(248, 211, 163, 0.95), rgba(248, 211, 163, 0.7), rgba(248, 211, 163, 0));
    }
    
    #navbar span {
        margin-left: 5vw;
        margin-right: 5vw;
    }
    
    #navbar span:first-of-type {
        font-family: "filmotype-yukon", sans-serif;
        font-size: 3.5vw;
    }
    
    a, a:hover, a:visited, a:active {
        color: inherit;
        text-decoration: none;
    }
}

@media only screen and (max-width: 768px) {
    #leftcontainer {
        display: flex;
        width: 100vw;
        height: 40vh;
        align-items: center;
        flex-direction: row;
        /* margin-left: 20px; */
        position: absolute;
        z-index: 0;
    }

    #rightcontainer {
        width: 90vw;
        /* height: 100%; */
        margin-right: 20px;
        top: 30vh;
        position: absolute;
        z-index: 0;
        right: 0;
        overflow: hidden;
    }

    #headshot {
        display: block;
        width: 90vw;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        outline: 2.5px rgb(64 54 46) solid;
        position: relative;
        z-index: 0;
    }

    #header {
        font-family: "filmotype-yukon", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 25vw;
        text-align: center;
        margin-top: 0;
        margin-bottom: -30px;
        width: 100%;
        color: rgb(64 54 46);
    }

    #container1 {
        display: inline-block;
        width: 770px;
        height: auto;
    }

    #ringcontainer {
        width: 30vw;
        margin-top: 20vh;
        margin: 1em;
        margin-right: 1vw;
        float: right;
        /* position: absolute; */
        height: 30vw;
        border-radius: 50%;
        -webkit-shape-outside:circle(50%);
        shape-outside:circle(50%);
        /* outline: 2px solid red; */
        transform: rotate(15deg);
    }

    #careercircle {
        width: inherit;
        z-index: 1;
        /* outline: 2px solid red; */
        position: absolute;
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        } to {
            transform: rotate(360deg);
        }
    }

    #isa {
        z-index: 0;
        display: flex;
        /* outline: 2px solid red; */
        margin-top: 0.5vw;
        text-align: center;
        justify-content: center;
        align-items: center;
        height: 100%;
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 4vw;
        line-height: 1;
        color: rgb(64 54 46);
        filter: drop-shadow(1.5px 1.5px white);
        text-justify: inter-character;
    }

    #hometext {
        /* display: inline; */
        font-family: "roc-grotesk", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 6vw;
        line-height: 1.1;
        padding-right: 3vw;
        padding-top: 6vh;
        color: rgb(64 54 46);
    }

    #hometext span {
        font-weight: 600;
    }

    #container2 {
        margin-top: 7.5vw;
    }

    #burger {
        position: fixed;
        z-index: 3;
        width: 12.5vw;
        top: 0.6vh;
        right: 1.4vw;
    }
/* 
    #navbarcontainer {
        width: 100vw;
        height: 100vh;
        position: absolute;
        overflow: hidden;
    } */

    #navbar {
        /* outline: 2px solid red; */
        width: 105vh;
        height: 55px;
        position: fixed;
        top: 46.5vh;
        left: calc(100vw - 52.5vh + 55px);
        /* left: 0; */
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color:rgb(64 54 46);
        background-color: rgb(248, 211, 163);
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 4vw;
        z-index: 2;
        transform: rotate(90deg);
        transition: left 1s;
        border-bottom: 2px solid rgb(64, 54, 46);
        overflow: hidden;
    }

    #navbar span {
        margin-left: 4vw;
        margin-right: 4vw;
    }

    #navbar span:first-of-type {
        font-family: "filmotype-yukon", sans-serif;
        font-size: 6vw;
    }

    a, a:hover, a:visited, a:active {
        color: inherit;
        text-decoration: none;
    }
}