.games-img{
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    transition: transform .2s;
    border: double 4px transparent;
    background-image: linear-gradient(black, black),linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);;
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.games-img:hover{
    transform: scale(1.03)
}

.games-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    /*margin-top: 40px;*/
    padding:16px;
}

.game-wrapper{
    display: block;
}

.games-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;

}

.games-title {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 28px;
    margin: 10px auto 0;
    text-align: center;
    text-decoration: none;
}



@media screen and (max-width: 700px){
    .games-title {
        font-size: 20px;
    }
}