body {
    background-image: url("../img/bg.jpg");
    background-color: #000000;
    background-repeat: repeat-y;
    background-size: 100% auto;
    color: #FEEA00;
    font-family: Type;
    font-size: 1.2em;
}

main {
    margin-left: 100px;
    margin-right: 100px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.preloader-text {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-family: Type;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

body.loaded #preloader {
    opacity: 0;
    pointer-events: none;
}

.logo {
    display: block;
    margin: 40px auto; /* Vertikaler Abstand und horizontale Zentrierung */
    max-width: 500px;  /* Maximale Breite des Logos, kannst du anpassen */
    width: 90%;        /* Breite auf kleineren Bildschirmen, sorgt für seitlichen Abstand */
}

@font-face {
  font-family: Type;
  src: url(../fonts/XTypewriter-Regular.woff);
}