body{
    cursor:url("https://img.icons8.com/?size=30&id=5lSUndqmtO1D&format=png&color=000000"), auto;
    background-image: url("https://i.pinimg.com/originals/12/b2/3a/12b23a7752e8a7a4464c1ff5e596237f.gif");
    background-size: cover;
    font-family: "Press Start 2P", serif;
}
#menu_btn{
    z-index: 1;
    color:white;
    cursor:url("https://img.icons8.com/?size=30&id=pNYwZNH5RvOJ&format=png&color=000000"),auto;
    transition: 0.2s;
    position: absolute;
    right: 6;
    font-size: 2em;
}
#menu_btn:hover{
    color:black
}
h1,h2{
    color: white;
}
.game {
    transition: color 0.5s;
    cursor:url("https://img.icons8.com/?size=30&id=pNYwZNH5RvOJ&format=png&color=000000"),auto;
    color: white;
}

.game:hover {
    color:rgb(235, 70, 70)
}

#side_menu{
    text-align: center;
    justify-content: center;
    top: 0;
    transition: right 0.5s ease;
    position: fixed;
    background: rgba(0,0,0,0.8);
    width: 250px;
    right: -250px;
    height: 100vh;
}
#side_menu.active{
    right: 0;
}
.team{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.member{
    transition: 0.2s;
    cursor:url("https://img.icons8.com/?size=30&id=pNYwZNH5RvOJ&format=png&color=000000"),auto;
    color: white;
    margin: 20px;
    text-align: center;
}
.member img{
    max-width: 150px;
    border-radius: 50%;
}
.member:hover{
    transform: scale(1.2);
}
a{
    text-decoration: none;
}