
#my-games_container {
    text-align: center;
}

#my-games {
    display: flex;
    flex-wrap: wrap;
}

#my-games .board-graphics {
    --game-width: 300px;
    --game-height: 300px;

    position: relative;
    grid-template-areas:
        'top_bar'
        'board'
        'bottom_bar';

    background-color: black;

    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    cursor: pointer;

    transition: background-color, padding;
    transition-duration: 500ms;
}

#my-games .board-graphics:hover {
    background-color: #181818;
    padding: 25px;
}

#my-games .board-graphics .message {
    margin: 0px;
    margin-top: 10px;
}

.board-graphics__result {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;

    color: white;
    background: rgba(0, 0, 0, 0.8);
    
    z-index: 30;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;

    font-family: sans-serif;
    font-size: xxx-large;
    font-weight: bold;
}

.board-graphics_result__user-win {
    font-size: xx-large;
}

#my-games_download {
    margin: 10px;
    font-size: x-large;
}

#my-games .delete {
    position: absolute;
    right: -5px;
    top: -5px;
    width: 40px;
    height: 40px;

    background-color: transparent;
    background-image: url(../images/glyphs/incorrect.svg);
    background-size: contain;
    z-index: 40;
}
