@media only screen and (min-width: 768px) {
    #leftcontainer {
        display: flex;
        width: 53vw;
        height: 93vh;
        top: 7vh;
        align-items: center;
        margin-left: 20px;
        position: absolute;
    }

    #aboutimg {
        width: 50%;
        margin-left: 10%;
        outline: 2.5px rgb(64 54 46) solid;
    }

    #rightcontainer {
        display: flex;
        align-items: center;
        width: 50vw;
        height: 100%;
        margin-right: 6vw;;
        position: absolute;
        right: 0;
        overflow: hidden;
    }

    #container1 {
        display: flex;
        align-items: center;
        width: 770px;
        height: auto;
    }

    #container2 {
        margin-top: 10%;
        width: 100%;
        height: 80%;
        /* outline: 2px solid red; */
    }

    #aboutheader {
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 4vw;
        color:rgb(64 54 46);
        margin-top: 0;
        text-align: right;
    }

    .aboutbody {
        font-family: "roc-grotesk", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 1.4vw;
        line-height: 1.1;
        color:rgb(64 54 46);
    }
}

@media only screen and (max-width: 768px) {
    #leftcontainer {
        display: flex;
        width: 100vw;
        height: 40vh;
        top: 0;
        align-items: center;
        justify-content: center;
        /* margin-right: 20px; */
        position: absolute;
    }

    #aboutimg {
        width: 50%;
        margin-left: 10%;
        outline: 2.5px rgb(64 54 46) solid;
    }

    #aboutcontainer {
        overflow-y: visible;
        overflow-x: visible;
        height: 100vh;
        width: 100vw;
        position: absolute;
        top: 0;
        left: 0;
    }

    #rightcontainer {
        display: flex;
        align-items: flex-start;
        top: 35vh;
        width: 80vw;
        height: min-content;
        margin-left: 10vw;;
        position: absolute;
        left: 0;
        overflow-x: visible;
    }

    #container1 {
        display: flex;
        align-items: center;
        width: 100%;
        height: auto;
    }

    #container2 {
        margin-top: 10%;
        width: 100%;
        overflow-x: visible;
        /* height: 80%; */
        /* outline: 2px solid red; */
    }

    #aboutheader {
        font-family: "roc-grotesk", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 10vw;
        color:rgb(64 54 46);
        margin-top: 0;
        text-align: left;
    }

    .aboutbody {
        font-family: "roc-grotesk", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 4vw;
        line-height: 1.1;
        color:rgb(64 54 46);
        text-align: justify;
        overflow-x: visible;
    }

    .aboutbody:last-of-type {
        margin-bottom: 30vh;
    }
}