body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f0f0f0;
}

h1 {
  color: #333;
}

input[type="file"] {
  margin: 1rem 0;
}

button {
  background-color: #008CBA;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #0077a3;
}

#audio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.audio-item {
  background-color: white;
  border-radius: 10px;
padding: 1rem;
margin: 1rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.audio-item audio {
width: 100%;
}
