

@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;
    font-family: 'NotoSans', sans-serif;
}
  
.loading-dots {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #06417D;
    margin: 0 5px;
    animation: dot-bounce 1s infinite ease-in-out;
}


.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

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


@media (prefers-color-scheme: dark) {
    body {
        background-image: url('../images/melzer_background_dark.png');
        color: #ffffff;
    }

    .dot {
        background-color: #ffffff;
    }

    #loading h1 {
        color: #ffffff;
    }
}