body {
    background-color: black;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Cinzel', serif;
}

h1 {
    color: white;
    font-size: calc(2rem + 1.5vw);
    margin-bottom: 1rem;
    text-align: center;
}

p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

#tic-tac-toe-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 5px;
    width: 90vmin;
    height: 90vmin;
}

.cell {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 7vmin;
    font-weight: bold;
    cursor: pointer;
}


#player-options {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.player-option {
    background-color: white;
    color: black;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.player-option:hover {
    background-color: #eee;
}

.player-option:hover:not(.active) {
    background-color: #eee;
}

.player-option.active {
    background-color: #ccc;
    cursor: default;
}