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

.container {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px; /* Maximale Breite auf 800px beschränken */
    width: 100%; /* Breite auf 100% setzen, damit es auf kleineren Bildschirmen flexibel bleibt */
    margin: 0 auto; /* Zentriert das Element horizontal */
}

.intro-image {
    width: 100%; /* Breite auf 100% setzen */
    height: auto; /* Höhe automatisch anpassen */
    max-width: 800px; /* Maximale Breite des Bildes auf 800px setzen */
    border-radius: 15px;
    border: 5px solid #ccc;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
}

input[type="text"], input[type="number"] {
    width: 90%;
    padding: 15px;
    font-size: 1.2rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    background-color: #f9f9f9;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #28a745;
    color: #fff;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #218838;
}

button:active {
    background-color: #1e7e34;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
}

.hidden {
    display: none;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.choices img {
    width: 100px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.choices img:hover {
    transform: scale(1.1);
}

#result {
    margin: 20px 0;
    font-size: 1.5rem;
}

#score {
    font-size: 1.2rem;
    margin: 20px 0;
    line-height: 1.5;
}

#rounds {
    margin-top: 20px;
}
