* {
    cursor: none;
}

.game-container {
    display: flex;
    flex-wrap: wrap;
}
body{
    background-color: #182028;
}
.game {
    width: 25%;
    margin-top: 5%;
    color: aliceblue;
    text-align: center;
}
.game img {
    width: 80%;
    transition: transform 0.2s;
    border-radius: 10px;
}
.game img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

#cursor {
    width: 10px;
    height: 10px;
    background-color: #00FFBF;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    transition: width 0.2s, height 0.2s;
    z-index: 1000;
    transform: translate(-50%, -50%);
}

#cursor.interacting {
    width: 30px;
    height: 30px;
    border: 2px solid #00FFBF;
    background-color: transparent;
    }