body{
    background: rgb(34, 39, 67);
    background-image: url(../img/muster_bg.png);
    color: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    position: relative;
}

/* Google ICON */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999; /* Über anderen Inhalten anzeigen */
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff;
}

#loading img {
    display: block;
    margin: 0 auto;
}

#loading p {
    margin-top: 10px;
    font-size: 16px;
}

/* LOGO SPLASH >>>>>>>>>>>> */
@keyframes logoShrinkMove {
    100% {
        transform: scale(0.1);
        opacity: 0;
    }
}

#logoSplashOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9); /* Farbe und Deckkraft des Overlays */
    opacity: 0; /* Anfangs unsichtbar */
    transition: opacity 1s; /* Übergangsdauer */
    z-index: 998; /* niedriger als Logo und Willkommenstext */
}


#logoSplash.logo-out {
    animation: logoShrinkMove 1s forwards;
}

#logoSplash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 1s, opacity 1s; /* Animationsdauer definieren */
    z-index: 9999; /* höher als das Overlay */
}

.logo {
    opacity: 0;
    transition: opacity 0.5s;  /* Diese Zeile sorgt für das sanfte Einblenden */
}

.logo.visible {
    opacity: 1;
}

#welcomeText {
    font-family: 'Lobster', cursive;
    text-shadow: 2px 2px 2px #000000, 4px 2px 2px #000000, 5px 5px 2px #000000, 6px 6px 2px #000000;
    font-size: 2em;
    color: #FFF;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999; /* höher als das Overlay */
    transition: opacity 1s;  /* sanftes Ein- und Ausblenden */
}
/* LOGO SPLASH <<<<<<<<<<<<<< */





.footer {
    text-shadow: 2px 2px 2px #000000, 4px 2px 2px #000000, 5px 5px 2px #000000, 6px 6px 2px #000000;
    position: fixed; /* Den Footer positionieren */
    bottom: 0; /* Am unteren Rand des Viewports ausrichten */
    left: 0; /* Linker Rand des Viewports */
    right: 0; /* Rechter Rand des Viewports */
    text-align: center; /* Text in der Mitte zentrieren */
    padding: 10px 0; /* Abstand oben und unten */
  }

