@media screen and (min-width: 768px) {

    h2{
        font-size: 32px;
    }

    .frustration-text{
        font-size: 18px;
    }
    
    .hero-content{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;

        text-align: left;
        align-items: center;

        gap: 150px;
    }

    .hero-wrapper{
        justify-content: center;
    }
    
    .hero-content h1{
        font-weight: bold;
    
        font-size: 96px;
    }
    
    .hero-content p{
        font-size: 20px;
        font-style: italic;
    }
    
    .hero-wrapper img{
        width: 50%;
        max-width: 550px;
    }

    .content-background{
        padding: 60px;
    }

    .frustrations{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .frustration-text{
        max-width: 300px;
    }

    .first-gradient{
        position: absolute;
        top: 20%;
        left: -5%;
        width: 40vw;
        height: 40vw;
        filter: blur(350px);
    }

    footer > .container{
        flex-direction: row;
        justify-content: space-between;
    }

    #contact-us h2{
        padding-top: 100px;
    }

    footer{
        padding: 80px 0px;
    }
}