h1 {
    color: rgb(48, 44, 154);
    font-size: 4em;
    font-family: Arial, sans-serif;
    align-content: center;
    text-align: center;
}

#start_panel {
    justify-content: center;
    align-items: center;
    text-align: center; /* For inline text alignment */
    /* height: 10vh;*/
    background-color: #f0f0f0; /* Light gray background */
}

#vokabeln_form {
    display: flex; /* Flexbox aktivieren */
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
    text-align: center; /* Für Textausrichtung */
    height: 30vh; /* Vollbildhöhe */
}


table {
    border: 1px solid black;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    text-align: center;
}
td {
    border: 1px solid black;
    padding: 10px;
}
tr:nth-child(odd) {
    background-color: #f2f2f2;
}
tr:nth-child(even) {
    background-color: #ffffff;
}

#firework {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}