.game-end-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 1vmin;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    z-index: 1001; /* above overlay */
}

.game-end {
    display: flex;
    flex-direction: column;
    gap: 0.5vmin;
    padding: 0.5vmin;
    width: 70hv !important; /* overwrite .tableau */
    position: relative !important /* overwrite .tableau */
}

.game-end-winner-container {
    display: grid;
    place-items: center;
    padding: 0.5vh;
    background-image: url('./../images/wallpaper.svg');
    border-radius: 3vh;
}

.game-end-winner {
    display: flex;
    flex-direction: row;
    gap: 0.75vmin;
    background: var(--beige-bg);
    padding: 0.5vh;
    border-radius: 2.75vh;
}

.game-end-winner-content {
    height: 5vh;
    place-self: center;
    font-size: var(--fs-xxl);
    color: var(--text-color);
    background: var(--highlight-color);
    border-radius: 2.5vh;
    padding: 0 1vw 0 1vw;

    display: grid;
    place-items: center;
}

.game-end-description {
    font-style: italic;
    font-size: var(--fs-s);
    color: var(--white);
    width: 25vw;
    text-align: center;
}

.game-end-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
}
