#about{
    background-color: rgb(119, 96, 33);
    min-height: calc(100vh - 106px);
    width: 100%;
}

#about-we{
    display: flex;
    justify-content: center;
    align-items: center;
}

#chef > img{
    height: 70vh;
    width: 70vh;
}

#cta-about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    width: 70%;
    padding: 20px;
    gap: 15px;
}

#cta-about:hover{
    cursor: pointer;
    transition: 1.5s;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

#cta-about > i{
    font-size: 40px;
    color: #dfa70e;
}

#cta-about > h2{
    color: #dfa70e;
    font-size: 28px;
    font-weight: 400;
}

#cta-about > p{
    font-size: 18px;
    text-align: justify;
    color: #000;
    font-weight: 200;
}

@media screen and (max-width: 1117px){
    #about-we{
        flex-direction: column;
        gap: 25px;
    }

    #chef > img{
        max-height: 50vh;
        max-width: 50vh;
    }

    #cta-about{
        width: 100%;
    }
}