html,
body {
    width: 100%;
    height: 100%;
}

#cont_all {
    position: relative;
    overflow: hidden;
    height: 80vh;
    border-bottom: solid 2px #000;
    /* background-image: url('../img/nuvem.png');
    background-repeat: repeat-x;
    background-size: auto 40%;
    background-position-y: 50%; */
}

@keyframes animation_background {
    0% {
        background-position: 6000px;
    }

    100% {
        background-position: 0px;
    }
}

#cont_cactus {
    position: absolute;
    top: 0;
    left: 0;
}

#dino {
    position: absolute;
    bottom: 0;
    left: 50px;
    bottom: 0;
    transition: 0.6s;
    height: 80px;
    z-index: 2;
}

.dino_jump {
    bottom: 150px !important;
}

.cactus {
    position: absolute;
    bottom: 0;
    right: 0px;
    height: 45px;
    z-index: 2;
}

.nuvem {
    position: absolute;
    bottom: 120px;
    right: -1950px;
    height: 24%;
    z-index: 2;
    size: auto 100%;
}

#cont_score {
    position: absolute;
    top: 15px;
    left: 0;
    border: solid 1px #F289A0;
    padding: 6px 18px;
    border-radius: 12px;
}

#score {
    color: #F289A0;
}

#cont_record {
    position: absolute;
    top: 15px;
    right: 0;
    border: solid 1px #6c98d7;
    padding: 6px 18px;
    border-radius: 12px;
}

#record_nome {
    text-transform: capitalize;
    color: #6c98d7;
    font-weight: bold;
}