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