.games {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: space-evenly;
    margin: auto;
    grid-gap: 10px;
    width: 100%;
    max-width: 1024px;
    list-style: none;
    padding: 20px 0;
    video {
        width: 300px;
        height: 210px;
        object-fit: cover;
    }
}