* {
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: black;
    font-family: "Poppins",sans-serif;
}

:root{
    --bg-color : #080808;
    --second-bg-color:#131313;
    --text-color:white;
    --main-color:#00ffee;
}

h1 {
    background-color: black;
    color: #cfdee7;
    height: 5rem;
    line-height: 5rem;
}

.choice {
    /* height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; */
    display:flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 10rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin:3rem 1.5rem 3rem 0;
    transition: 0.3s ease-in-out; 
}

.choice:hover {
    /* cursor: pointer;
    background-color: #011638; */
    color:var(--text-color);
    transform: scale(1.3)translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
}

img {
    height: 7.5rem;
    width: 7.5rem;
    border-radius: 50%;
}

.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}

.scoreboard {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-top: 3rem;
    gap: 4rem;
    color: white;
}

#userscore, #compscore {
    font-size: 2rem;
}

.message {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: wrap;
    margin-top: 3rem;
    gap: 3rem;
}

.message {
    display:inline-block;
    padding:1rem 2.8rem;
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 4rem;
    font-size: 1rem;
    color: black;
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor:pointer;

}
.message:hover{
    transform:scale(1.05);
    box-shadow: 0 0 50px var(--main-color);
}
.message-group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:3.5rem;

}
.message-group a:nth-of-type(2){
    background-color: black;
    color: var(--main-color);
    border:2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;

}
.message-group a:nth-of-type(2):hover{
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color:black;
}

.hidden {
    display: none;
}

.choice.disabled {
    opacity: 0.5; /* Visual indication of being disabled */
    pointer-events: none; /* Disable clicks */
}