.content {
    display: flex;
    justify-content: center;
}

.content #content {
    width: 70%;
    padding: 10px 0px;
}

.content #content nav {
    background-color: #eeeeee;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-weight: 800;
    border-radius: 4px;
}

.content #content .contentGame {
    width: 100%;
    background-color: #eeeeee;
    margin: 8px 0 0 0;
    padding: 10px 0;
    

}
.content #content .contentGame .footer {

    text-align: center;
    padding: 20px 0 10px 0;
    font-size: 16px;

}
.content #content .contentGame .games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;

}
.content #content .contentGame .games div {

    background-color: #fff;
    border-radius: 0px;
    padding: 10px;



}
.content #content .contentGame .games div img {

    width: 100%;
    height: 240px;
    border-bottom: 1px solid rgb(241, 239, 239);
    border-radius: 4px;
    padding-bottom: 10px;

}
.content #content .contentGame .games #name {

    margin:0;
    padding: 15px 10px;
    color: #000;
    font-weight: 900;

}
.content #content .contentGame .games a {

    background-color: #2774de;
    color: #fff;
    margin: 0 0  10px 10px;
    padding: 5px 10px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;

}

@media (max-width: 576px) {

    .content #content {
    width: 85%;
}

    .content #content .contentGame .games {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 10px;
}

}
@media (min-width: 577px) {

    .content #content {
    width: 75%;
}

    .content #content .contentGame .games {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
    ;
}

}
@media (min-width: 960px) {

    .content #content {
    width: 70%;
}

    .content #content .contentGame .games {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
    ;
}

}
@media (min-width: 1200px) {

    .content #content {
    width: 60%;
}

}