*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background:#050505;
    color:white;
    padding:40px;
}

/* TITLE */

.title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    font-weight:bold;
    letter-spacing:2px;
}

/* COLLECTION */

.collection{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD */

.card{
    background:#0d0d0d;
    padding:15px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(255,255,255,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:8px;
}

.card h3{
    margin-top:15px;
    font-size:20px;
}

.price{
    margin:10px 0;
    color:#d9d9d9;
    font-size:18px;
}

/* BUTTON */

.btn{
    display:inline-block;
    padding:10px 20px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:25px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#bdbdbd;
}

/* RESPONSIVE */

@media(max-width:900px){

    .collection{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .collection{
        grid-template-columns:1fr;
    }

    .title{
        font-size:28px;
    }

}