/* Grundlegende Einstellungen */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: #111; /* Dunkler Hintergrund */
    height: 100vh; /* Volle Bildschirmhöhe */
    display: flex;
    justify-content: center; /* Alles mittig (horizontal) */
    align-items: center; /* Alles mittig (vertikal) */
    overflow: hidden;
}

/* Der Container in der Mitte */
.container {
    text-align: center;
    z-index: 2; /* Damit es über dem Hintergrund liegt */
    background: rgba(0, 0, 0, 0.5); /* Halb-transparente Box */
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px); /* unschärfe effekt */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* mein geiler name(groß0es MaNu) */
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Die Links */
.links a {
    display: block; /* Jeder Link in eigener Zeile */
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 10px 0;
    transition: 0.3s;
}

.links a:hover {
    color: white;
    transform: scale(1.1); /* Wird beim Drüberfahren größer */
    text-shadow: 0 0 10px white;
}

.video-background {
    position: fixed;    /* Fixiert das Bild fest im Hintergrund */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;         /* Ebene 1 (Dein Text-Container braucht z-index: 2) */

    /* Das Unsplash Bild */
    background-image: url('https://images.unsplash.com/photo-1601549339987-80f5fb7e1622?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    
    background-size: cover;       /* Bild füllt den Screen komplett aus */
    background-position: center;  /* Bild wird zentriert */
    background-repeat: no-repeat; /* Bild wiederholt sich nicht */

    /* Optional: Macht das Bild etwas dunkler (40%), damit man den Text besser lesen kann */
    filter: brightness(0.6); 
}


