* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../bilder/BG.jpg');
  background-size: cover;   /* Füllt den gesamten Bereich aus */
  background-position: center;  /* Zentriert das Bild */
  background-repeat: no-repeat; /* Verhindert Wiederholung */
  z-index: -1;  /* Stellt sicher, dass das Bild hinter dem Inhalt liegt */
}

/* Hotspot styles - klickbare Bereiche */
.hotspot {
  position: absolute;
  cursor: pointer;
}

/* Definiere die Bereiche für die Social Media Logos */
.spotify {
  top: 45%;    /* Justiere die Position */
  left: 63%;   /* Justiere die Position */
  width: 80px; /* Breite des klickbaren Bereichs */
  height: 80px; /* Höhe des klickbaren Bereichs */
}

.youtube {
  top: 45%;
  left: 68%;
  width: 80px;
  height: 80px;
}

.apple {
  top: 45%;
  left: 73%;
  width: 80px;
  height: 80px;
}

footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 1.2em;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
