body {
  font-family: 'Poppins', sans-serif;
  background: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

select, button {
  margin-top: 15px;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

button {
  background: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

.songs {
  margin-top: 25px;
  text-align: left;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.2s;
}

.songs p:hover {
  transform: scale(1.03);
}

.songs p {
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .container {
    width: 90%;
  }
}



