body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #110c60;
    font-family: Arial, sans-serif;
    box-sizing: border-box; /* Damit padding innerhalb der angegebenen Breite berücksichtigt wird */
}

#game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 800px;
    width: 100%;
}

#playerTurn {
    width: 100%;
    align-items: center;
    text-align: center;
}

#wordDisplay {
    margin-top: 20px;
    font-size: 30px;
    color: #caff38;
}

#hint{
    color: #caff38;
}

#progressBarContainer {
    width: 100%;
    background-color: hsl(264, 55%, 55%);
    margin-top: 20px;
    padding: 0;
    border-radius: 5px; /* Ecken leicht abgerundet für modernes Aussehen */
}

#progressBar {
    height: 10px;
    width: 0%;
    background-color: #caff38;
    border-radius: 5px; /* Ecken leicht abgerundet für modernes Aussehen */
}

h2 {
    font-size: 20px;
}

h3{
    font-size: 15px;
    margin-bottom: -15px;
}

p{
    font-size: 15px;
    font-weight: 100;
    text-align: center;
}

h1, h2, h3, p, li {
    text-align: center;
    color: hsl(264, 55%, 90%); /* Stellt Textfarbe einheitlich ein */
}

input, button {
    padding: 10px 20px;
    font-size: 16px;
    color: hsl(264, 55%, 90%);
    background-color: hsl(264, 55%, 46%); /* Dunkelblau */
    border: none;
    border-radius: 5px; /* Ecken leicht abgerundet für modernes Aussehen */
    cursor: pointer;
    width: 100%; /* Macht die Elemente voll breit, abzüglich der Padding */
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

input:focus{
    outline: none;
}

button:hover {
    background-color: hsl(264, 55%, 55%);
}

#playerCount {
    max-width: 200px; /* Begrenzt die Breite des Input-Felds */
    text-align: center;
    margin-bottom: 10px; /* Abstand nach unten */
}

.secretWordCategor{
    margin-top: 20px;
    font-size: 25px;
    color: hsl(264, 55%, 90%);
    margin-bottom: -15px;
}

#anleitung{
    color: hsl(264, 55%, 90%);
}
