body {

    display: flex;
    flex-direction: column; /* Flexbox in vertikale Richtung anordnen */
    justify-content: center; /* Container in der Mitte der horizontalen Achse ausrichten */
    align-items: center; /* Container in der Mitte der vertikalen Achse ausrichten */
    margin: 0; /* Standardmäßige Margin entfernen */
    background-color: #192a6b; /* Hintergrundfarbe */
    font-family: 'Heebo', sans-serif;
    color: white;
    padding: 20px;
}

h2 {
    font-weight: 700;
}
p {
    line-height: 1.6;
}


.prevdiv{
    margin-left: auto;
    margin-right: 0;
    width: 10%;
}
.nextdiv{
margin-left: 0;
margin-right: auto;
width: 10%;
}

.spiel {
    height: 100vH;
      display: flex;
  flex-direction: column;
  resize: vertical;
  overflow: auto;
    justify-content: center; /* Container in der Mitte der horizontalen Achse ausrichten */
    align-items: center; /* Container in der Mitte der vertikalen Achse ausrichten */
}

.container {
    max-width: 800px;
    width: 100vw;
        display: flex;
    flex-direction: column; /* Flexbox in vertikale Richtung anordnen */
        margin: 0; /* Standardmäßige Margin entfernen */
}

.word-container {
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: 20px;
}

.word {
    width: 70%;

    border: none; /* Umrandung entfernen */
    text-align: center;
    padding: 20px;
    font-family: 'Heebo', sans-serif;
    font-size: 2.5em; /* 2-3 mal so groß wie normal */
    color: white; /* Schriftfarbe */
}

.next,
.prev {
    height: 100%;
    border: none;
    background-color: transparent;
    font-size: 2.5em;
    color: #CE0058; /* Farbe der Pfeile */
}

.delete-btn {
    height: 100%;
    border: none;
    background-color: transparent; /* Transparenter Hintergrund */
    cursor: pointer;
}

.delete-btn i {
    font-size: 2em; /* Größe des Müllkorb-Icons */
}
