.gamelist{
    position: fixed;
    max-height: 100%;
    height: 100%;
    width: 100%;
    margin-top: 50px;

    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;

    overflow-y: auto;

    z-index: 100;
}
.game{
    position: fixed;
    width: 300px;
    height: 150px;
    background-color: rgba(46, 46, 46, 0.596);
    border-radius: 10px;
    border: 2px solid white;
    transition: 0.4s;
    box-shadow: 0px 0px 10px 5px red;
}
.game a img{
    border-radius: 10px;
    position: relative;
    height: 100%;
    width: 100%;
}
.game a{
    font-style: none;
}
.game:hover{
    position: fixed;;
    width: 500px;
    height: 250px;
    transition: 0.4s;
    border: 2px solid rgb(7, 212, 0);
    box-shadow: 0px 0px 30px 20px red;
}
.listcodbtn{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.codbtn{
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;

    height: 50px;
    min-width: 150px;
    background-color: rgba(29, 29, 29, 0.788);
    border-radius: 10px;

    transition: 0.3s;
}
.codbtn a{
    font-size: 18px;
    font-weight: bolder;
    text-decoration: none;
    color: white;
}

.codbtn a:hover{
    transition: 0.4s;
    color: red;
}

.backbtnmodif{
    top: 5px;
    left: 5px;
    position: fixed;
    height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 50px;
    z-index: 11;
}
.backbtnmodif:hover{
    transition: 0.3s;
    background-color: red;
}