#active-game{
    text-align: center;
    margin: 2rem 0 5rem 0;
    display: none; 
}

#game-over{
    width: 90%;
    max-width: 40rem;
    margin: auto;
    padding: 1rem 2rem;
    color: whitesmoke;
    background-color: rgb(155, 61, 72);
    box-shadow: 0 2px 8px rgba(0, 0, 0,0.2);
    border-radius: 4px;
    display: none;
}

#game-over h3{
    color: whitesmoke;
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

#active-player-name{
    font-weight: bold;
    color: rgb(155, 61, 72);
}

#game-board{
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: grid;
    /* grid-template-columns: 6rem 6rem 6rem; */
    grid-template-columns: repeat(3, 6rem);
    grid-template-rows: repeat(3, 6rem);
    justify-content: center;
    gap: 0.5rem;
}

#game-board li{
    background-color: rgb(255, 172, 172);
    /* border: 0.7px solid rgb(143, 46, 57); */
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
}

#game-board li:hover{
    background-color: rgb(143, 46, 57);
}

#game-board li.disabled{
    background-color: rgb(143, 46, 57);
    color: white;
}