/* Grundstil für die Seite */
body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #000;
  background-image: url('backgroundstadion.png'); /* Hintergrundbild für mobile Version */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden; /* Verhindert Scrollen auf mobilen Geräten */
}

/* Desktop-Version - anderes Hintergrundbild */
@media (min-width: 601px) {
  body {
    background-image: url('backgrounddesktop.png'); /* Hintergrundbild für Desktop */
  }
}

/* Container für alle Elemente */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Profil-Circle mit Bild */
.profile-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: url('profilbild.png'); /* Hier das gewünschte Bild einfügen */
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  margin-bottom: 10px;
}

/* Rolle und Name */
.role {
  color: #fff; /* Weißer Text für die Rolle */
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.name {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Kontakt-Buttons */
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-button {
  background-color: rgba(30, 144, 255, 0.8); /* Transparenter Hintergrund */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: rgba(255, 99, 71, 0.8); /* Hover-Farbe */
}

/* Anpassungen für die Desktop-Version */
@media (min-width: 992px) {
  .contact-button {
    font-size: 14px; /* Kleinere Schriftgröße für Desktop */
    padding: 8px 16px;
  }
}
