body {
    background: #222222;
    background-size: cover;
}

.testing {
    font-family: "Dosis", sans-serif;
    font-weight: 800;
    text-align: center;
    color: #1ab188;
    margin: 0;
    width: 100%;
    position: fixed;
}

.text-bounce {
    display: inline-block;
    padding-top: 20px;
    vertical-align: center;
    transform: scaleY(1) translateY(0px);
    transform-origin: 50% 100%;
    transition: .3s ease-in-out;
}

.animate {
    animation: bouncy 1s forwards;
    color: #375a7f;
}

@keyframes bouncy {
    0% {
        transform: scaleY(1) translateY(0px);
    }
    25% {
        transform: scaleY(.5) translateY(20px);
    }
    50% {
        transform: scaleY(1.2) translateY(-20px);
    }
    75% {
        transform: scaleY(.8) translateY(10px);
    }
    100% {
        transform: scaleY(1) translateY(0px);
    }
}

.testing:hover {
    cursor: default;
}
