*{
    margin: 0;
    padding: 0;
    font-family: "Oxanium", sens-serif;
}

body{
    background-color: black;
    cursor: none;
}

.dot{
    height: 15px;
    width: 15px;
    background-color: #23e701;
}

.outline{
    height: 30px;
    width: 30px;
    background-color: #23e701;
    opacity: 0.4;
}

.dot, .outline{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

p{
    display: none;
    color: #23e701;
    position: absolute;
    font-size: 30px;
    top: 370px;
    left: 670px;
}

.tryAgain{
    display: none;
    top: 410px;
}

button{
    position: absolute;
    top: 400px;
    left: 650px;
    background-color: #23e701;
    padding: 10px 50px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    transition: 0.2s ease-in-out;
}

button:hover{
    background-color: #000000;
    color: #23e701;
    border: 3px solid #23e701;
    border-radius: 10px;
}

a{
    text-decoration: none;
    color: inherit;
}

h1{
    color: #23e701;
    text-align: center;
    font-size: 60px;
    position: absolute;
    top: 300px;
    left: 400px;
}


.container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game{
    border: 5px solid #23e701;
    border-radius: 5px;
    height: 70vh;
    width: 150vh;
}

.character{
    height: 50px;
    width: 50px;
    background-color: #23e701;
    position: relative;
    top: 441px;
    left: 200px;
}

.animate{
    animation: jump 0.5s infinite linear;
}
@keyframes jump{
    0%{
        top: 441px;
    } 
    30%{
        top: 350px;

    }
    70%{
        top: 350px;
    }
    100%{
        top: 441px;
    } 
}

.block{
    height: 50px;
    width: 50px;
    /*background-color: white;*/
    background: conic-gradient(white,#23e701, green, white);
    border-radius: 50%;
    position: relative;
    top: 391px;
    left: 1003px;
    animation: anime 0.8s infinite linear;
}
@keyframes anime {
    0%{
        left: 1003px;
        rotate: 0deg;
    }
    100%{
        left: -20px;
        rotate: -360deg;
    }
}

h2{
    position: absolute;
    top: 120px;
    left: 1330px;
    color: #23e701;
}