.games-menu {
    width: 100%;
    margin-top: 3.5%;
    margin-bottom: 2.5%;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    column-gap: 5%;
    row-gap: 5%;

    transition: row-gap 0.5s ease;
}

.games-menu > a {
    margin: 2%;
    height: fit-content;
    width: fit-content;
}

.games-menu > a > img {
    /*OG Button dimensions*/
    width: 500px;
    height: 200px;

    border-radius: 5%;
    box-shadow: 3px 3px 5px 5px rgba(0,0,0,0.25);
    margin: 0;
    padding: 0;

    transition: all 0.5s ease;
    transform: scale(1);
}

.games-menu > a > img:hover {
    cursor: pointer;
    transform: scale(1.10);
}