html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: url("audio-stream.png") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: white;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4); /* optioneel donker overlay */
}

h1 {
  font-size: 3em;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 15px 25px;
  margin: 10px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

#status {
  margin-top: 30px;
  font-size: 18px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}