    /* body {
        margin: 0;
        background-color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
    } */
    /* *{margin:0;padding:0} */
    html, body {
        width:  100%;
        height: 100%;
        margin: 0;
        overflow: hidden;
    }
    
    .canvas-container{
        position: relative;
        transform-origin: left top;
    }
    canvas {
        position: absolute;
    }

    .instruction {
        position:absolute;
        left: 200px;
        bottom: 120px;
        color: #00000080;
        font-family: monospace;
        font-size: 30px;
        font-weight: 600;
        z-index: 90;
    }
    
    .contact-info {
        padding: 0px 15px 0px 30px;
        border-radius: 30px 0 0 30px;
        background-color: rgba(21, 21, 21, 0.7);
        position:absolute;
        right: 0%;
        z-index: 90;
    }
    
    .contact-info img {
        width: 30px;
        padding: 12px;
    }

    .playerController { 
        width: 302px;
        height: 234px;
        position:absolute;
        left: 65%;
        bottom: 10%;
        z-index: 90;
        display: none;
    }
    .playerControllerPointer { 
        width: 100px;
        height: 100px;
        position:absolute;
        z-index: 100;
        display: none;
    }
    .ltBtn {
        background: rgba(0, 0, 0, 0.150);
        border-radius: 50%;
        font-size: 30px;
        color: rgb(237, 237, 237);
        border: none;
        width: 80px;
        height: 80px;
        position:absolute;
        left: 75%;
        bottom: 10%;
    }
    .rtBtn {
        background: rgba(0, 0, 0, 0.150);
        border-radius: 50%;
        font-size: 30px;
        color: rgb(237, 237, 237);
        border: none;
        width: 80px;
        height: 80px;
        position:absolute;
        left: 85%;
        bottom: 10%;
    }
    .jumpBtn {
        background: rgba(0, 0, 0, 0.150);
        border-radius: 50%;
        font-size: 30px;
        color: rgb(237, 237, 237);
        border: none;
        width: 80px;
        height: 80px;
        position:absolute;
        left: 10%;
        bottom: 10%;
    }
    .ltBtn:active{background-color:rgba(255, 52, 52, 0.696);}
    .rtBtn:active{background-color:rgba(255, 52, 52, 0.696);}
    .jumpBtn:active{background-color:rgba(255, 52, 52, 0.696);}
    
    .rain-container, .fire-fly-container {
        position: absolute;
        left: 100%;
        display: none;
    }

    .rain-drop {
        z-index: 100;
        position: absolute;
        height: 100px;
        background: linear-gradient(transparent, #ffffff);
        border-radius: 5px;
        opacity: 0.5;
        animation: drop 0.5s linear infinite;
    }

    @keyframes drop {
        0% {
            transform: translateY(0vh);
            opacity: 0.5;
        }
        65% {
            opacity: 0.3;
        }
        75% {
            transform: translateY(90vh);
            opacity: 0;
        }
        100% {
            transform: translateY(90vh);
            opacity: 0;
        }
    }
    
    .rain-splash-container {
        position: absolute;
    }

    .rain-splash {
        z-index: 100;
        position: absolute;
        width: 2px;
        height: 2px;
        border-radius: 100%;
        background-color: #ffffffc4;
    }
    
    .rain-splash-container .rain-splash:nth-child(1) {
        animation: splash1 0.5s linear infinite;
    }
    
    .rain-splash-container .rain-splash:nth-child(2) {
        animation: splash2 0.5s linear infinite;
    }
    
    .rain-splash-container .rain-splash:nth-child(3) {
        animation: splash3 0.5s linear infinite;
    }
    
    .rain-splash-container .rain-splash:nth-child(4) {
        animation: splash4 0.5s linear infinite;
    }
    
    .rain-splash-container .rain-splash:nth-child(5) {
        animation: splash5 0.5s linear infinite;
    }
    
    .rain-splash-container .rain-splash:nth-child(6) {
        animation: splash6 0.5s linear infinite;
    }

    @keyframes splash1 {
        0% {
            transform: translate(0px, 0px);
            opacity: 0.5;
        }
        90% {
            transform: translate(-15px, -30px);
            opacity: 0;
        }
    }

    @keyframes splash2 {
        0% {
            transform: translate(0px, 0px);
            opacity: 0.5;
        }
        50% {
            transform: translate(20px, -45px);
            opacity: 0;
        }
    }

    @keyframes splash3 {
        0% {
            transform: translate(0px, 0px);
            opacity: 0.5;
        }
        60% {
            transform: translate(-5px, -25px);
            opacity: 0;
        }
    }

    @keyframes splash4 {
        0% {
            transform: translate(0px, 0px);
            opacity: 0.5;
        }
        80% {
            transform: translate(10px, -5px);
            opacity: 0;
        }
    }

    @keyframes splash5 {
        0% {
            transform: translate(0px, 0px);
            opacity: 0.5;
        }
        75% {
            transform: translate(35px, -15px);
            opacity: 0;
        }
    }

    @keyframes splash6 {
        0% {
            transform: translate(0px, 0px);
            opacity: 0.5;
        }
        75% {
            transform: translate(-30px, -10px);
        }
        100% {
            opacity: 0;
        }
    }

    .fire-fly {
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 100%;
        background-image: radial-gradient(rgb(246, 255, 69), rgb(255, 226, 8), rgb(255, 183, 27));
        box-shadow: 0px 0px 3px 1px rgb(255, 183, 27);
        z-index: 100;
        animation: fly 12s linear infinite;
    }

    @keyframes fly {
        0% {
            transform: translate(40px, 30px) scale(1);
            opacity: 1;
        }
        5% {
            transform: translate(25px, 20px);
        }
        10% {
            transform: translate(10px, 40px) scale(0.6);
            opacity: 0.9;
        }
        20% {
            transform: translate(-20px, -5px) scale(0.7);
            opacity: 0.6;
        }
        30% {
            transform: translate(10px, -40px) scale(0.1);
            opacity: 0;
        }
        40% {
            transform: translate(-10px, 10px) scale(0.8);
            opacity: 0.4;
        }
        45% {
            transform: translate(-15px, 15px);
        }
        50% {
            transform: translate(-25px, -15px) scale(0);
            opacity: 0.8;
        }
        60% {
            transform: translate(5px, -10px) scale(0.4);
            opacity: 1;
        }
        65% {
            transform: translate(0px, -15px) scale(0.2);
        }
        70% {
            transform: translate(10px, 20px) scale(0.8);
            opacity: 0.3;
        }
        80% {
            transform: translate(-5px, 35px) scale(0.6);
            opacity: 0;
        }
        90% {
            transform: translate(10px, 50px) scale(0.2);
            opacity: 0.5;
        }
        100% {
            transform: translate(40px, 30px) scale(1);
            opacity: 1;
        }
    }