html {

}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    color: white;
    text-align: center;
    font-size: 1.5rem;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.bigFont {
    font-size: 20px;
}

.smallFont {
    font-size: 1rem;
}

.wrongLetter {
    text-decoration: line-through;
    position: relative;
}

.wrongLetter::after {
    content: ""; /* Pseudo-Element für die Linie */
    position: absolute;
    left: 0;
    top: 50%; /* In der Mitte des Buchstabens */
    width: 100%;
    height: 2px; /* Dicke der Linie */
    background-color: red; /* Farbe der Linie */
}

.centeredDiv {
    /*width: 50%; !* Breite des Divs *!*/
    margin: 0 auto; /* Horizontale Zentrierung */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparent */
    color: white;
    font-size: 1rem;
    text-align: left; /* Text linksbündig */
    border-radius: 10px;
}

.alignLeft {
    text-align: left;
}

.importantText {
    font-size: 20px;
    text-decoration: underline;
}

.bouncingText {
    position: absolute;
    font-size: 3rem;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
    transition: color 0.5s ease-in-out;
}