/* styles.css */

@font-face {
    font-family: 'NotoSans';
    src: url('fonts/NotoSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../images/melzer_background.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #06417D; 
    font-family: 'NotoSans', sans-serif; 
}
  
#loading {
    text-align: center; /* Zentrale Ausrichtung des Textes */
    font-family: 'NotoSans', sans-serif;
}
  
.loading-dots {
    display: flex; /* Flexbox für die Punkte */
    justify-content: center; /* Zentrale Ausrichtung der Punkte */
    margin-top: 60px; /* Abstand zum Text */
}

.dot {
    width: 10px; /* Größe der Punkte */
    height: 10px;
    border-radius: 50%;
    background-color: #06417D; /* Punktefarbe */
    margin: 0 5px; /* Abstand zwischen den Punkten */
    animation: dot-bounce 1s infinite ease-in-out; /* Animation */
}

/* Animation für die Punkte */
.dot:nth-child(1) {
    animation-delay: 0s; /* Verzögerung für den ersten Punkt */
}

.dot:nth-child(2) {
    animation-delay: 0.2s; /* Verzögerung für den zweiten Punkt */
}

.dot:nth-child(3) {
    animation-delay: 0.4s; /* Verzögerung für den dritten Punkt */
}

@keyframes dot-bounce {
    0%, 80%, 100% {
        transform: translateY(0); /* Ausgangsposition */
    }
    40% {
        transform: translateY(-15px); /* Hochspringen */
    }
}

