*{
    font-family: 'Montserrat', sans-serif; 
    /* font-family: 'Fraunces', serif; */
}

body {
    background-color: #f2ebe3;
}

.container {
    display: flex;
    flex-wrap: wrap;
    min-width: 270px;
    max-width: 375px;
    width: 100%;
    height: 100%;
    margin: 20px auto;
    padding: 20px;

}

.infoContainer {
    padding: 25px ;
    color: #1c232b;
    background-color: #fff;
    margin-top: -10px;
    z-index: 2;
    border-radius: 0 0 10px 10px;
}
.product__img {
    border-radius: 10px 10px 0px 0px;
    aspect-ratio: 40/34;
    object-fit: cover;
}
.beforeText {
    padding-bottom: 12px;
    color: #6c7289;
    font-size: 13px;
    letter-spacing: 3px;
}
.title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 35px
}
.description {
    padding: 15px 0 10px 0;
    font-size: 14px;
    color: #6c7289;
    line-height: 1.8;
}
.prices{
    padding: 12px 0 20px 0;
}
.prices b {
    font-family: 'Fraunces', serif;
    color: #3c8067;
    font-size: 30px;
    padding: 0 17px 0 0;
}
.prices del {
    font-size: 13px;
    color: #74798f;
    line-height: 30px;
    vertical-align: top;
}
.buyButtom {
    background-color: #3c8067;
    color: #fff;
    display: inline-block;
    border-color: #fff;
    box-shadow: none;
    border-radius: 10px;
    width: 100%;
    height: 47px;
}
.attribution {
    padding: 10px;
    text-align: center;
    align-content: flex-end;
}

@media only screen and (min-width: 1300px) {
    .divBack {
        max-height: calc(462.3px*1.3);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 50vh 50vh 5vh;
        grid-gap: 10px;
        grid-auto-rows: 50vh;
        grid-template-areas: ". a a ." ". a a .";
    }
    .container {
        grid-area: a;
        align-self: center;
        justify-content: center;
        max-width: none;
        padding: 0;
        margin: 0;
        max-height: 462.3px;
   }
    .product__img {
        margin: 0;
        aspect-ratio: 6/9;
        object-fit: cover;
        max-width: 300px;
        border-radius: 10px 0 0 10px;

    }
    .infoContainer {
        color: #1c232b;
        padding: 30px;
        margin: 0;
        background-color: #fff;
        border-radius: 0 10px 10px 0;
        max-width: 300px;
    }
    .beforeText {
        padding-bottom: 20px;
    }
    .prices {
        padding-bottom: 25px;
    }
    .prices b {
        font-size: 32px;
    }
    .attribution {
        background-color: #cec6be;
        align-self: end;
        margin: 0;
        padding-bottom: 30px;
        padding-top: 20px;
        grid-column: 1 / 5;
        grid-row: 3/4;
    }
}

