@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* GEÄNDERT: Hintergrund auf deine Logofarbe gesetzt */
  background-color: #142431;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  text-align: center;
  padding: 20px;
}

/* HINZUGEFÜGT: Stil für dein Logo */
.logo {
  max-width: 300px; /* Passe dies bei Bedarf an */
  height: auto;
  margin-bottom: 20px; /* Abstand nach unten */
}

/* ENTFERNT: Die alten h1 und h1 span Stile sind nicht mehr nötig */

h2 {
  font-weight: 300;
  font-size: 1.2em;
  color: #bbb;
  margin-top: 10px;
}

p {
  margin-top: 25px;
  font-size: 1.05em;
  color: #ccc;
}

.loader {
  margin: 40px auto;
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #00c6ff; /* Lade-Farbe beibehalten */
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
}