body {
    background-color: rgb(143, 143, 232);
    font-family: 'Courier New', Courier, monospace;
}

*{
    padding: 0;
    margin: 0;
}
#game{
    width: 400px;
    height: 500px;
    border: 3px solid black;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    overflow: hidden;
    cursor: pointer;
}
#block{
    width: 50px;
    height: 500px;
    background-color: black;
    position: relative;
    left: 400px;
    animation: block 2s infinite linear;
}
@keyframes block{
    0%{left:400px}
    100%{left:-50px}
}
#hole{
    width: 50px;
    height: 150px;
    background-color: rgb(143, 143, 232);
    position: relative;
    left: 400px;
    top: -500px;
    animation: block 2s infinite linear;
}

#character{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 400px;
    border-radius: 50%;
}

#score {
    font-size: 40px;
    text-align: center;
}

#startButton {
    padding: 15px 40px;
    font-size: 40px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background-color: rgb(71, 204, 202);
    transition: 0.2s;
}

#startButton:hover {
    background-color: rgb(172, 242, 241);
}

.stats {
    font-size: 40px;
    text-align: center;
    display: block;
}

#updateForm {
    display: none;
}