* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    flex-direction: column;
    background-color: rgb(169, 238, 215);
}

button {
    display: block;
    margin: 5px auto;
    padding: 10px 20px;
    font-size: 16px;
}

#startButton {
    margin-bottom: 5px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
}

#game {
    width: 400px;
    height: 500px;
    border: 1px solid black;
    overflow: hidden;
    position: relative;
    background-color:white;
}

#character {
    width: 20px;
    height: 20px;
    background-color: blue;
    border-radius: 50%;
    position: absolute;
    top: 400px;
    left: 190px;
    z-index: 1000000;
}

.block {
    width: 400px;
    height: 20px;
    background-color: red;
    position: absolute;
}

.hole {
    width: 40px;
    height: 20px;
    background-color: white;
    position: absolute;
}

#scoreContainer {
    text-align: center;
    font-size: 18px;
    margin: 5px;
}

.money {
    position: absolute;
}

.money_1 {
    width: 20px;
    height: 20px;
}

.money_2 {
    width: 30px;
    height: 30px;
}
