.fixed-link {
  position: fixed;
  bottom: 20px; /* Abstand vom unteren Rand */
  right: 20px; /* Abstand vom rechten Rand */
  z-index: 1000; /* Stellt sicher, dass der Link über anderen Inhalten liegt */
}

/* Optional: Styling für den Link selbst */
.fixed-link a {
  padding: 10px 15px;
  background-color: #000000;
  color: #FFFFE0;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Grundlegende Link-Stile */
a {
  color: #FFFFE0; /* Standardfarbe für nicht besuchte Links */
  text-decoration: none;
}

/* Besuchte Links beibehalten die gleiche Farbe */
a:visited {
  color: #FFFFE0;
}

/* Farbe bei Hover ändern (optional) */
a:hover {
  color: #FFFFFF; /* Oder eine andere Farbe */
}

.bild-hover { 
  width: 320px;
  height: 480px;
  background-image: url('r1.jpg'); /* Standardbild */
  background-size: cover;
  transition: background-image 0.5s ease-in-out;
}

.bild-hover:hover {
  background-image: url('r2.jpg'); /* Hover-Bild */
}

.bts-text { 
  height: 480px;
  width: 90vw;
  background-image: url('BTS_text.jpg'); /* Hintergrund */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}
