body {
  font-family: Arial;
  text-align: center;
  background-color: black;
  color: white;
  margin: 0;
  overflow-x: hidden;
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

.audio-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.audio-container audio {
  width: 260px;
  max-width: 85vw;
}

#countdown {
  color: #39ff14;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
  text-shadow:
    0 0 5px #39ff14,
    0 0 10px #39ff14,
    0 0 20px #39ff14,
    0 0 40px #00ff99;
}

img {
  max-width: 100%;
  border-radius: 10px;
}

.layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
}

.speakers {
  width: 150px;
}
.spotify-container {
  max-width: 100vw;
  overflow: hidden;
}

  .spotify-icon {
    font-size: 50px;
    color: #1DB954;
  }

  /* Page content */
  .content {
    margin-top: 100px;
    padding: 20px;
  }

.content {
  text-align: center;
  max-width: 600px;
}

@media (max-width: 700px) {
  .layout {
    flex-direction: column;
  }

  .speakers {
    width: 120px;
  }

  .content {
    max-width: 90%;
  }
}