body{
    margin: 0;
    background-color: #1b1b1b;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1{
    font-size: clamp(2rem, 5vw + 1rem, 6rem); /* responsive */
    margin: 5px;
}

.game{
    text-align: center;
}

/* styles for the buttons */

.choices{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.choice {
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.choice:hover{
    transform: scale(1.1);
    box-shadow: 3px 2px 3px 0 #555;
}

.choice.disabled{ /* actives this when the button is pressed */
    opacity: 0.5;
    pointer-events: none;
}

/* styles for the choices and the results */

.status{
    opacity: 0.9;
    font-size: 1rem;
    margin-top: 15px;
}

#comparing-choice{
    display: none;
    font-style: italic;
    color: #ccc;
    margin-top: 15px;
}

#result {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #ffd166;
}