body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

#grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
    width: 600px;  /* Setze die Breite des Containers passend */
    height: 500px; /* Setze die Höhe des Containers passend */
}

.tile {
    width: 100%;  /* Kachel nimmt die gesamte Breite der Zelle */
    height: 100%; /* Kachel nimmt die gesamte Höhe der Zelle */
    background-size: cover; /* Bildausschnitte als Hintergrundbild */
    background-position: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
