#Elias {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px 50px;
    margin: 2% auto 8%;
    width: 90%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), inset 0 0 0.5px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

#game {
    width: 80%;
    height: 500px;
    border: 1px soli #333;
    border-bottom: 15px solid #24b437;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: linear-gradient(#54c1e2, #adc6eb);
    border-radius: 20px;
}

.tubo {
    position: absolute;
    bottom: 0;
    width: 80px;
    animation: animacao-tubo 2s infinite linear;
    left: 100%;
}

.QUE-MÁRIO {
    width: 150px;
    position: absolute;
    bottom: 0;
    left: 80px;
}

.pulo {
    animation: pulu-mario 500ms ease-out;
}

@keyframes pulu-mario {
    0% {
        bottom: 0;
    }

    30%,
    70% {
        bottom: 180px;
    }

    100% {
        bottom: 0;
    }
}

@keyframes animacao-tubo {
    from {
        left: 100%;
    }

    to {
        left: -80px;
    }
}