body {
  background-color: #000;
}

* {
  font-family: "Kode Mono", monospace;
}

h1,
h2 {
  color: #d9ff00;
  width: 100%;
  text-align: center;
}

h1 {
  margin-bottom: 5px;
  margin-top: 0;
}

h2 {
  margin-top: 0;
}

#fileWrapper {
  position: absolute;
  top: 0;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}

#fileWrapper > div {
  max-width: 344px;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}

#visualizer_wrapper {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  /* Horizontale Zentrierung */
  align-items: center;
  /* Vertikale Zentrierung */
  height: 100vh;
  /* Nimmt die gesamte Höhe des Viewports ein */
  width: 100vw;
  /* Nimmt die gesamte Breite des Viewports ein */

  margin: 0;
  /* Kein Außenabstand */
}

/* Entferne eventuell bestehende feste Positionierungen oder Abstände am Canvas */
canvas {
  display: block;
  /* Entfernt eventuelle Inline-Element-Abstände */
  max-width: 100%;
  /* Optional: Begrenzung der Breite */
  height: auto;
  /* Optional: Automatische Höhe beibehalten */
}

#room.hidden {
  visibility: hidden;
}

#close {
  display: none;
  font-size: 50px;
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
  color: #d9ff00;
  background-color: #000;
  padding: 5px;
}

button.play-button {
  font-size: 1.5em;
  margin: 5px;
  color: #4f4f4f;
  background: transparent;
  border: solid 1px;
}

button.play-button.active {
  color: #d9ff00;
  cursor: pointer;
}
