#games-window {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -525px;
    width: 1056px;
    height: 556px;
    background-color: #000000;
    border: 3px double #cd853f;
    z-index: 100;
}

@media screen and (max-width: 1899px) {
    #games-window {
        margin-top: -280px;
    }
}

@media screen and (min-width: 1900px) {
    #games-window {
        margin-top: -195px;
    }
}

#games-window-whole {
    border: 0px dotted blue;
    width: 1050px;
    height: 550px;
    overflow: hidden;
    position: relative;
}

games-window-header {
    position: absolute;
    top: 0px;
    left: 0px;
    border: 0px dotted red;
    width: 100%;
}

#games-window-header-left {
    float: left;
    margin-left: 20px;
    font-variant: small-caps;
}

#games-window-header-right {
    float: right;
}

#games-window-intro-top-part {
    border: 0px dotted blue;
}

#games-window-in-progress {
    border: 0px dotted red;
    float: left;
    padding: 10px 5px 5px 15px;
    width: 50%;
    height: 200px;
}

#games-window-log {
    border: 0px dotted red;
    float: right;
    padding: 10px 5px 5px 5px;
    width: 50%;
    height: 200px;
}

#games-window-selection {
    border: 0px dotted blue;
    width: 100%;
    height: 325px;
    padding: 5px;
    overflow-x: hidden;
    overflow-y: auto;
}

.games-window-select-offer {
    border: 1px solid #cd853f;
    border-radius: 5px;
    width: 150px;
    height: 120px;
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 0px 10px 0px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.games-window-select-offer:hover {
    border: 3px double #cd853f;
    background-color: rgba(20, 20, 20, 0.8);
}

/* ////////////////////////////////////////////////////////////////////////// */

#games-game-intro-description {
    border: 0px dotted blue;
    padding: 20px 10px 10px 15px;
}

#games-game-intro-description-left {
    border: 0px dotted blue;
    float: left;
    padding-left: 10px;
    width: 50%;
}

#games-game-intro-description-right {
    border: 0px dotted blue;
    float: right;
    width: 40%;
}

#games-game-intro-bottom-left {
    border: 0px dotted blue;
    float: left;
    width: 50%;
    height: 250px;
    padding: 20px 5px 5px 5px;
}

#games-game-intro-bottom-right {
    border: 0px dotted blue;
    float: right;
    width: 50%;
    height: 250px;
    padding: 20px 5px 5px 5px;
}

#games-hangman-difficulty-selection {
    column-count: 2;
    column-rule-style: dotted;
    column-rule-width: 1px;
}

#games-game-hangman-top {
    border: 0px dotted red;
    width: 100%;
    padding: 15px;
    height: 185px;
}

#games-game-hangman-top-left {
    border: 0px dotted blue;
    width: 70%;
    float: left;
    height: 150px;
}

#games-game-hangman-top-right {
    border: 0px dotted blue;
    width: 30%;
    float: right;
    height: 150px;
    font-size: x-large;
    font-weight: bold;
    text-align: center;
}

#games-game-hangman-top-right img {
    width: 80%;
}

#games-game-hangman-word-itself {
    font-size: xxx-large;
    letter-spacing: 10px;
    font-weight: bold;
    margin-left: 80px;
    margin-top: 25px;
}

#games-game-hangman-status-string-success {
    margin-left: 100px;
    font-size: large;
    font-weight: bold;
    color: green;
}

#games-game-hangman-status-string-failed {
    margin-left: 100px;
    font-size: large;
    font-weight: bold;
    color: red;
}

#games-game-hangman-bottom {
    border: 0px dotted red;
    padding: 15px;
    width: 100%;
}

.games-game-hangman-letter-used {
    border: 1px solid #cd853f;
    cursor: pointer;
    background-color: rgba(60, 20, 20, 0.8);
    border-radius: 5px;
    width: 80px;
    height: 100px;
    font-size: xxx-large;
    font-weight: bold;
    text-align: center;
    float: left;
    margin-left: 10px;
    margin-top: 3px;
    margin-right: 10px;
    padding: 10px 0px 10px 0px;
}

.games-game-hangman-letter-active {
    border: 1px solid #cd853f;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    border-radius: 5px;
    width: 80px;
    height: 100px;
    font-size: xxx-large;
    font-weight: bold;
    text-align: center;
    float: left;
    margin-left: 10px;
    margin-top: 3px;
    margin-right: 10px;
    padding: 10px 0px 10px 0px;
}

.games-game-hangman-letter-active:hover {
    border: 3px double #cd853f;
    background-color: rgba(20, 20, 20, 0.8);
}

.pexeso-container {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto;
    padding: 5px;
    column-gap: 15px;
    row-gap: 15px
    
}

/* ////////////////////////////////////////////////////////////////////////// */

.pexeso-title {
    border: 1px solid rgba(0, 0, 0, 0.8);
    text-align: center;
}

.pexeso-overlay { 
    position: absolute;
    background: rgba(0, 100, 0, 0.3); 
    color: #01FF01;
    text-align: center;
    font-size: 8px;
    padding: 21px;
    margin-top: -50px;
    padding-bottom: 19px;
    padding-top: 20px;

}

/* ////////////////////////////////////////////////////////////////////////// */

.game-minesweeper-full-board {
    display: grid;
    border: 1px solid rgba(205, 134, 63, 0.7);
}

.game-minesweeper-row {
    display: contents;
    cursor: pointer;
}

.game-minesweeper-cell {
    background-color: #111111;
    padding: 8px 1px 1px 1px;
    margin: 1px 1px 1px 1px;
    height: 45px;
    overflow-wrap: break-word;
    font-weight: bold;
    font-size: large;
}

.game-minesweeper-cell-active:hover {
    background-color: #222222;
}

