#restaurante{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.container-restaurante {
    width: 100%;
    display: flex;
    gap: 50px;
    margin-top: 110px;
}

.text-content-restaurante {
    width: 40%;
    text-align: left;
    margin-left: 50px;
    height: auto;
}

.text-content-restaurante h1 {
    font-family: "Aboreto", serif;
    font-size: 3.4rem;
    font-weight: 400;
    color: #DD1111;
    margin-bottom: 20px;
}

.text-content-restaurante p {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
    text-align: justify;
}

.image-content-restaurante {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: right;
}

.image-content-restaurante img {
    display: flex;
    flex-direction: column;
    align-items: right;
}

@media screen and (max-width: 1170px) {
    .container-restaurante {
        flex-wrap: wrap;
        justify-content: center;
    }

    .image-content-restaurante{
        width: calc(70% - 50px);
    }

    .text-content-restaurante {
        width: 100%;
        text-align: center;
        margin-left: 10px;
        height: auto;
    }

    .text-content-restaurante h1 {
        font-family: "Aboreto", serif;
        font-size: 3rem;
        font-weight: 400;
        color: #DD1111;
        margin-bottom: 20px;
    }
    
    .text-content-restaurante p {
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #000000;
        text-align: justify;
    }
}

@media screen and (max-width: 600px) {
    .image-content-restaurante{
        width: 100%;
    }
}