body {
  background: #15181d;
}

h1 {
  color: #ff4949;
  margin: 20px;
  font-family: monospace;
}

a {
  color: white;
  text-decoration: none;
  padding: 50px;
  font-family: monospace;
  display: inline-block;
  margin: 20px;
  background: #2a488f;
}

a:hover {
  background: #365db8;
}

#main {
  width: 80%;
  margin: 50px auto;
}

#player {
  width: 100%;
  height: 480px;
  background-color: black;
  display: none;
  margin: 0 20px;
}

button.dropbtn {
  color: white;
  text-decoration: none;
  padding: 50px;
  font-family: monospace;
  display: inline-block;
  background: #1a6b41;
  border: none;
  cursor: pointer;
}

button.random-button {
  color: white;
  text-decoration: none;
  padding: 50px;
  font-family: monospace;
  display: inline-block;
  background: #a5421b;
  border: none;
  cursor: pointer;
  margin: 20px;
}

button.random-button:hover {
  background: #ab5e40;
}

button.dropbtn:hover {
  background: #419268;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin: 20px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #15171b;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  background: #111;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  margin: 0;
}

.dropdown-content a:hover {
  background: #333;
}

.show {
  display: block;
}

h2#nowPlaying {
  color: white;
  font-family: monospace;
  margin: 20px;
}

#loadingMessage {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: monospace;
  font-size: 18px;
  text-align: center;
  background: #0e0e0e;
  padding: 20px;
  margin: 0;
  z-index: 1000;
}

#errorMessage {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: red;
  font-family: monospace;
  font-size: 18px;
  text-align: center;
  background: #0e0e0e;
  padding: 20px;
  margin: 0;
  z-index: 1000;
}
