/* styles.css */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
}

.container {
  text-align: center;
}

.button-container {
  margin: 20px;
}

.sound-button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.sound-button:active {
  background-color: #45a049;
}

input[type="number"] {
  padding: 5px;
  margin: 5px;
  width: 70px;
  font-size: 14px;
}

p {
  font-size: 14px;
  color: #333;
}
