body{
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(270deg,#f7c6d9,#c6d8ff);
margin:0;
text-align:center;
}

h1{
margin-top:30px;
}

#search{
padding:10px;
width:250px;
border-radius:20px;
border:none;
margin:20px 0;
outline:none;
}

/* mood buttons */

.moods button{
padding:8px 15px;
margin:5px;
border:none;
border-radius:20px;
background:white;
cursor:pointer;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.2s;
}

.moods button:hover{
transform:scale(1.05);
}

/* cards container */

.container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
padding:20px;
}

/* card */

.card{
background:white;
width:220px;
padding:15px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
cursor:pointer;
transition:0.3s;
}

.card:hover{
transform:translateY(-6px) scale(1.03);
}

/* image */

.cover{
width:100%;
height:120px;
object-fit:cover;
border-radius:10px;
margin-bottom:10px;
}

/* text */

.card h3{
margin:5px 0;
font-size:16px;
}

.card p{
font-size:13px;
color:#666;
}

/* bottom player */

.player{
position:fixed;
bottom:0;
width:100%;
background:white;
padding:10px;
box-shadow:0 -3px 10px rgba(0,0,0,0.1);
}