.gameFeed{
    width: 100%;
    min-height: 400px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
    align-content: space-between;
    justify-content: center;
    align-items: start;
    justify-items: center;
    gap: 0px;
}
.gameFeed::-webkit-scrollbar{
    position: relative;
    display: none;
}
.gameFeed::-webkit-scrollbar-thumb{
    width: 10px;
    position: absolute;
    background-color: black;
}
.gameFeed>.gamefeedBox{
    overflow: hidden;
    width: 100%;
    height: auto;
}
.gameFeed>.gamefeedBox>a{
    display: block;
    width: auto;
    height: auto;
    overflow: hidden;
    text-decoration: none;
    font-family: inherit;
    font-weight: inherit;
    border: solid 1px rgb(127, 127, 127);
    border-radius: 10px;
    margin: 10px;
    object-fit: fill;
    transition: .3s;
}
.gameFeed>.gamefeedBox>a:hover{
    filter: brightness(90%);
    margin: 1px;
}
.gameFeed>.gamefeedBox>a>img{
    width: 100%;
}
.gameFeed>.gamefeedBox>a>.game-Description{
    width: auto;
    padding: 10px;
    margin: 0%;
    color: black;
    background-color: rgb(255, 255, 255);
}
.gameFeed>.gamefeedBox>a>.game-Description>h2{
    font-size: 14px;
    padding: 0px;
    margin: 0%;
    font-weight: 600;
}
.gameFeed>.gamefeedBox>a>.game-Description>ul{
    font-size: 11px;
    padding: 0px 0px 0px 10px;
    margin: 5px;
    font-weight: 600;
    color: rgb(4, 47, 108);
    list-style:url(/wp-content/plugins/game-feed-for-gameMonetization/game-cat-i.png);
}
.closeGamePlay{
    width:50px;
    height:50px;
    position:fixed;
    top:10px;
    right:10px;
    z-index:+99999999999999999999;
    border-radius:50px;
    background-color:#79797925;
    transition: .5s;
}
.closeGamePlay:hover{
    cursor:pointer;
    width: 53px;
    height: 53px;
    background-color: rgba(239, 239, 239, 0.679);
}
@media (max-width: 768px) {
    .gameFeed {
        grid-template-columns: 30% 30% 30%; 
        }
}
@media (max-width: 496px) {
    .gameFeed {
        grid-template-columns: 45% 45% ; 
        }
}