/* Basis-Stile */
* {
    color: white;
    text-decoration: none;
    box-sizing: border-box; /* Einheitliche Layout-Größe */
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body-Hannergrond */
#bodydiv {
    background: url(./../images/Index-Background.png) no-repeat center fixed;
    background-size: cover;
    height: 100%;
}

/* Grid-Container */
.grid_container {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(9, 1fr); /* 9 gläichméisseg Kolonnen */
    grid-template-rows: repeat(7, 10vh);
    justify-items: center; /* Zentéiert den Text */
    align-items: center;
    text-align: center;
}

/* Haapttitelen (Numm) */
.numm {
    grid-column: 1 / -1; /* Iwwerspaant all Kolonnen */
    grid-row: 1 / 7;
    font-size: 20vh;
    animation: fadeIn 1s ease-out;
}

/* Ënnertitel (Saachen) */
.saachen {
    grid-column: 1 / -1;
    grid-row: 7 / 9;
    font-size: 5vh;
    animation: fadeIn 1s ease-out;
}

/* Medienabfrage fir mobil Versioun */
@media screen and (max-width: 750px) {
    .numm {
        font-size: 20vw;
    }

    .saachen {
        font-size: 6vw;
    }

    #bodydiv {
        background-image: url(./../images/StarCitizenWallpap.jpeg);
    }
}

/* Fade-in-Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Sanftes Hochgleiten */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}