.games {
    /*background: #333333;*/
    text-align: center;
}

.games div {

}
a {
    text-decoration: none;
}

a:hover {
    color: cornflowerblue;
}
a:visited {
    text-decoration: none;
}

.game_container {
    list-style-type: none;
    margin: 10px 0;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

.game_container li {
    height: 350px;
    border-radius: 10px;
    display: inline-block;
    margin: 10px 10px 0 0;
    background: #2f2530;
    border: 3px solid #ba505e;
}
.game_container li:hover {
    background-color: rgba(0, 66, 99, 0.57);
}

.game_container img {
    width: 100%;
    height: 256px;
    border-bottom: 3px solid #ba505e;
    border-top: 3px;
}

.game_container p {
    font-family: ProtestRiot, sans-serif;
    color: #ba505e;
    font-weight: bold;
    font-size: 20px;
}