body {
  font-family: 'Staatliches', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7); /* Darken the video for readability */
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  margin: 30px 0 50px;
  text-shadow: 2px 2px 4px #000;
}

.audio-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.audio-block {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid white;
  border-radius: 50%; /* Changed from 15px to 50% to make circles */
  padding: 20px;
  width: 200px;          /* Adjusted to make width = height */
  height: 200px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.audio-block label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

input[type=range] {
  width: 100%;
}

.buttons {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

button {
  background-color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #ffcc00;
}
