#hero {
    background-image: url(../img/hero.jpg);
    padding: 15% 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

h1 {
    font-size: 4rem;
    margin: 0;
    line-height: 1;
}

#hero h2 {
    font-family: "Open Sans", sans-serif;
    margin-bottom: 40px;
}

.frase {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 7%;
    gap: 16px;
}

.frase > .profile-image {
    min-height: 300px;
    min-width: 300px;
    border-radius: 50%;
    background: url(/img/profilo.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.frase > p {
    font-size: 2.5rem;
    text-align: center;
}

.frase span {
    font-size: 4rem;
    color: #2e7d32;
}

.cta {
    padding: 12px;
    background: #2e7d32cc;
    border-radius: 8px;
    font-size: 1.2rem;
}

.cta:hover {
    background: #2e7d32ff;
}

/* 768px and less */
@media only screen and (max-width: 768px) {
    #hero {
        padding: 50px 16px;
    }

    h1 {
        font-size: 2rem;
    }

    .frase {
        flex-direction: column;
    }

    .frase > p {
        font-size: 1.5rem;
    }

    .frase span {
        font-size: 2rem;
    }

    .frase > .profile-image {
        min-height: 200px;
        min-width: 200px;
    }
}
