*{
    padding: 0;
    margin: 0;
    
}
#game{
    width: 400px;
    height: 500px;
    border-radius: 10px;
    border: 5px solid black;
    margin: auto;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: chocolate;
}
#character{
    width: 20px;
    height: 20px;
    background-color: rgb(0, 140, 255);
    border-radius: 50%;
    position: relative;
    top: 400px;
    left: 190px;
    z-index: 1000000;
}
.block{
    width: 400px;
    height: 20px;
    border-radius: 4px;
    background-color: rgb(54, 20, 4);
    position: relative;
    top: 100px;
    margin-top: -20px;
}
.hole{
    width: 40px;
    height: 20px;
    background-color:chocolate;
    position: relative;
    top: 100px;
    margin-top: -20px;
}

h4{
    text-align: center;
    font-size: 30px;
    font-weight:bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:rgb(54, 20, 4);
}