.head{
    text-align: center;
    margin-top: 20px;
}

#categorySelect{
    display: block;
    margin: 20px auto;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

.wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:30px;
}

.card{
    background:#686dab;
    border-radius:15px;
    width:300px;
    height:300px;
    overflow:hidden;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card p{
    color:white;
    text-align:center;
    font-weight:bold;
    padding:8px;
}
