.game {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    transition: all 1s ease-in-out;
}

.side {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.middle {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.game-title {
    height: 12%;
    margin-bottom: 2em;
}

.board {
    width: 100%;
    display: grid;
    gap: 0.4em;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    /* place-items: center;
    justify-items: stretch; */
    border: 0.4em solid var(--jeopardy-black);
    background-color: var(--jeopardy-black);
}

.cell {
    font-family: "Antonio", Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-color: var(--jeopardy-blue);
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 2px 2px var(--jeopardy-black);
}

.category {
    font-size: 0.9em;
    color: var(--white);
}

.clue {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 2em;
    color: var(--jeopardy-yellow);
    transition: all 0.3s ease-in-out;
}

.clue:hover {
    background-color: #293B7A;
    color: #FFE944;
    cursor: pointer;
}

.end-game-container {
    position: absolute;
    z-index: 20;
}

.end-game {
    background-color: transparent;
}

.end-game:hover {
    background-color: var(--error-red);
    border-color: var(--error-red);
}

.win-container {
    background-color: var(--background-blue);
    z-index: 90;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    row-gap: 1em;
}

.win-message {
    font-size: 5em;
    font-weight: 800;
    text-align: center;
}

.play-again {
    background-color: transparent;
    font-size: 1em;
}

.play-again:hover {
    transform: scale(1.05);
    background-color: var(--jeopardy-blue);
    cursor: pointer;
}

#winner-img {
    height: 20em;
}