body {
    background-color: rgb(33, 33, 33);
    overflow: hidden;
}

#player {
    position: absolute;
    width: 100px;
    height: 150px;
    /* background-color: white; */
    bottom: 0;
    left: 50px;
    background-image: url("../img/dino.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: bottom;
}


.obstacle {
    position: absolute;
    /* background-color: green; */
    background-image: url("../img/obstacle.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: bottom;
    /* width: 100px;
    height: 90px; */
    bottom: 0;
    right: 0px;
}

#ui > h1 {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#obstacleDiv {
    height: 100vh;
    width: 100vw;
}