/* Allgemeine Stile */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('cyberpunk_background.png') no-repeat center center/cover;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

/* Overlay */
.overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Überschrift */
.overlay h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Text */
.overlay p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-align: center;
}

/* Loader (Animation) */
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #ffcc00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    margin-top: 10px;
}

/* Keyframes für Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

