*{
    padding: 0;
    margin: 0;
}
#game{
    width:400px;
    height:500px;
    border: 1px solid black;
    margin: auto;
    position: relative;
    top: 150px;
}
#character{
    width:30px;
    height:30px;
    position: relative;
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQRWiD1iirkYvM9r8qbwciNcDR9COsPkz9How&usqp=CAU");
/*   background-image: url('../images/P-R.png');*/
    background-size: cover;
    top: 440px;
    left: 190px;
    z-index: 1000000;
}
#scorebox{
    width:150px;
    height:30px;
    margin: auto;
    position: relative;
    top: 170px;
    font-family: arial;
    font-size: 30px;
}
#gametitle{
    width:400px;
    height:60px;
    margin: auto;
    position: relative;
    top: 20px;
    font-family: arial;
    font-size: 40px;
}
#lava{
    width: 400px;
    height: 75px;
    margin: auto;
    position: relative;
    top: 130px;
    z-index: 2000000;
}
.block{
    width: 400px;
    height: 20px;
    background-color: black;
    position: relative;
    top: 100px;
    margin-top: -20px;
}
.blueblock{
    background-color: blue;
}
.purpleblock{
    background-color: purple;
}
.redblock{
    background-color: red;
}
.whiteblock{
    background-color: white;
}
.prestage{
    background-color:white;
}
.hole{
    width: 40px;
    height: 20px;
    background-color: white;
    position: relative;
    top: 100px;
    margin-top: -20px;
}

.sludge{
    width: 40px;
    height: 8;
    background-color: green;
    position: relative;
    top: 100px;
    margin-top: -20px;
}