#content {
    display: relative;
    flex-wrap: nowrap;
    width: 100%;
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: -2;
}

#content section {
    width: 95.5vw;
    margin: 1.5vh 1.5vw;
    border-radius: 4px;
    box-shadow: 0 0 25px 3px #363636;
    font-family: Nateli;
    font-size: 16px;
    padding-top: 5px;
    position: relative;
    height: 29vh;
}

#content section h1 {
    text-align: center;
}

#content section img {
    width: 20%;
    position: absolute;
    bottom: 0;
    left: 35%;
}

@media all and (width > 768px) {
    #content {
        z-index: -1;
        display: flex;
    }
    
    #content section {
        font-size: 32px;
        width: 47vw;
        height: 90vh;
        padding: 30px;
    }

    #content section img {
        width: 30%;
        bottom: 20px;
    }
}