/* ----------------------------------------------
 * Generated by Animista on 2023-7-11 19:25:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@keyframes scale-in-center {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
body{
    font-size: 16pt;
}
.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0px 64px 32px 32px;
}

.product {
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 8px 8px 4px 8px;
    background-color: white;
    border: 1.5px solid #f1f1f1;
}
.grid .expand{
    margin: 32px;
    transition: .5s, color .10s;
        -webkit-transition: .5s, color .10s;
        -moz-transition: .5s, color .10s;
}
.grid .expand:hover{
    transform: scale3d(1.2, 1.2, 0.3);
        -webkit-transform: scale3d(1.2, 1.2, 0.3);
        -moz-transform: scale3d(1.2, 1.2, 0.3);
}
.grid img{
    margin-bottom: 4px;
    border-radius: 8px;
    width: 100%;
    height: 320px;
    object-fit: cover;
    
}