body {
  background-color: #383838;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 700px;
  height: 300px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  text-align: center;
  font-size: 56px;
}

.audio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.button {
  background-color: #f5f5f5;
  color: #333;
  border: none;
  padding: 10px 20px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button:hover{
  background-color: #7d7d7d;
  color: #fff;
  transition: background-color 0.3s ease;
}
.button.active {
  background-color: #333;
  color: #fff;
}
.credit {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: lighter;
  color: #999;
}
.audio-player {
  width: 100%;
  margin-bottom: 20px;
}

.audio-player audio {
  width: 100%;
  display: block;
  height: 60px; /* Adjust the height as desired */
}
