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

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #blogcontainer {
        position: absolute;
        width: 72vw;
        left: 14vw;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: visible;
        /* outline: 2px solid red; */
    }

    .blogpost {
        outline: 2px solid rgb(64 54 46);
        height: 15vw;
        width: 70vw;
        margin-left: 1vw;
        margin-bottom: 5vw;
        border-radius: 1vw;
        display: flex;
    }

    .blogimg {
        height: 13vw;
        margin-top: 1vw;
        margin-left: 1vw;
    }

    .blogtitlecontainer{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        margin-left: 1vw;
        /* outline: 2px solid red; */
    }

    .blogheader{
        color:rgb(64 54 46);
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 3vw;
        display: inline;
        text-align: center;
        /* line-height: 15vw; */
        /* height: 15vw; */
    }

    #topper {
        width: 100%;
        height: 12.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;
    }

    #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) {
    #blogcontainer {
        position: absolute;
        width: 90vw;
        left: 5vw;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: visible;
        /* outline: 2px solid red; */
    }

    .blogpost {
        outline: 2px solid rgb(64 54 46);
        height: 20vw;
        width: 88vw;
        margin-left: 1vw;
        margin-bottom: 5vw;
        border-radius: 1vw;
        display: flex;
    }

    .blogimg {
        height: 18vw;
        margin-top: 1vw;
        margin-left: 1vw;
    }

    .blogtitlecontainer{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        margin-left: 1vw;
        /* outline: 2px solid red; */
    }

    .blogheader{
        color:rgb(64 54 46);
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 7vw;
        display: inline;
        text-align: center;
        line-height: 1em;
        /* height: 15vw; */
    }

    #topper {
        width: 100%;
        height: 12.5vw;
    }

    #burger {
        position: absolute;
        z-index: 3;
        width: 12.5vw;
        top: 0.6vh;
        right: 1.4vw;
    }

    #navbar {
        /* outline: 2px solid red; */
        width: 105vh;
        height: 55px;
        position: relative;
        top: 46.5vh;
        left: calc(100vw - 52.5vh + 55px);
        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;
    }
}