*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #eee;
    width: 100%;
    height: auto;
    font-family: sans-serif;
}

/* Title */
.shop{
    text-align: center;
    color: #313131;
    font-size: 30px;
    margin-top: 2.5rem;
    letter-spacing: 2px;
}

/* GRID CONTAINER */
.imgs{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem;
}

/* CARD */
.imgss{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGE */
.imgss img{
    width: 100%;
    max-width: 350px;
    height: 360px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.imgss img:hover{
    transform: scale(1.02);
}

/* TEXT */
.imgss p{
    text-align: center;
    color: #313131;
    margin-top: 10px;
}

.imgss p a{
    font-size: 1.6rem;
    color: rgb(120, 55, 95);
    text-decoration: none;
}

.imgss p a:hover{
    color: rgb(108,19,74);
}
@media (max-width: 768px){
    .shop{
        font-size: 22px;
    }

    .imgs{
        grid-template-columns: repeat(2, 1fr);
        margin: 1.5rem;
        gap: 1.2rem;
    }

    .imgss img{
        height: 220px;
    }

    .imgss p a{
        font-size: 1.1rem;
    }
}
@media (max-width: 1024px){
    .imgs{
        grid-template-columns: repeat(2, 1fr);
        margin: 3rem;
    }

    .imgss img{
        height: 300px;
    }
}
