/* General Reset */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f8f9fa;
  color: #222;
  text-align: center;
}

/* Title */
h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

/* Category */
p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #555;
}

/* Audio Player */
audio {
  width: 90%;
  max-width: 400px;
  margin-bottom: 20px;
}

/* Buttons */
button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* Download Button */
a button {
  background-color: #28a745;
}

a button:hover {
  background-color: #1e7e34;
}

/* Responsive Text */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }
  button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}
