@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    cursor: pointer;
}

#game {
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 20px;
}

#score {
    position: fixed;
    color: #fff;
    font-size: 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 1000;
    top: 20px;
    left: 20px;
}

#combo {
    position: fixed;
    color: #fff;
    font-size: 40px;
    font-family: 'Nunito', sans-serif;
    font-weight: 1000;
    bottom: 20px;
    left: 20px;
}

.misscount {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.acc {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.circle_remain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 800px;
    height: 800px;
    transition: all .005s;
    box-shadow: 0 0 0 10px inset #ffffff3f;
    pointer-events: none;
}

.circle {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff;
    border: 5px solid #ffffff78;
    color: #ffffffe0;
    font-size: 45px;
    font-weight: 1000;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.circle_success {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-size: 25px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 1000;
}