body {
    margin: 0;
}

#canvas-frame {
    border: none;
    cursor: pointer;
    width: 100%;
    height: 500px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#point {
    position: absolute;
    left: 20px;
    top: 0px;
    color: #464545;
    font-size: 40px;
    font-family: numjump;
}

#gameBegin {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gameOver {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9;
    color: white;
    text-align: center;
}

#replay {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0.5em 1em;
    width: 200px;
    height: 40px;
    text-decoration: none;
    font-size: 40px;
    font-weight: bold;
    border-radius: 20px;
    background: #5054d1;
    color: #ffffff;
    cursor: pointer;
}

#point_label {
    font-size:20px; 
    margin-top:100px;
    font-weight: 200; 
}

#pointtotal {
    font-size:80px; 
    margin-top:20px; 
    font-family: numjump;
}

