.fade-in-bottom {
    -webkit-animation: fade-in-bottom 3s cubic-bezier(.39,.575,.565,1.000) both;
    animation: fade-in-bottom 3s cubic-bezier(.39,.575,.565,1.000) both;
}

@-webkit-keyframes fade-in-bottom{
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom{
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

body {
    margin: 0;
    font-family: Bowlby One;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    text-align: left;
    background-color: #fff;
    padding-top: 3.5rem;
    text-shadow: 1px 1px 1px rgba(5, 5, 5, 0.69);
    background-image: url('assets/bakom.jpg');
}

.cc5x {
    -webkit-animation: cc5x 8s cubic-bezier(.55,.085,.68,.53) infinite alternate both;
    animation: cc5x 8s cubic-bezier(.55,.085,.68,.53) infinite alternate both;
}

@-webkit-keyframes cc5x{
    0% {
        background: #19dcea;
    }

    25% {
        background: #b22cff;
    }

    50% {
        background: #ea2222;
    }

    75% {
        background: #f5be10;
    }

    100% {
        background: #3bd80d;
    }
}

@keyframes cc5x{
    0% {
        background: #19dcea;
    }

    25% {
        background: #b22cff;
    }

    50% {
        background: #ea2222;
    }

    75% {
        background: #f5be10;
    }

    100% {
        background: #3bd80d;
    }
}

.korvs {
    -webkit-animation: korvs 15s 3 both;
    animation: korvs 15s 3 both;
}

@-webkit-keyframes korvs{
    0% {
        background-position: 0 0;
    }

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

@keyframes korvs{
    0% {
        background-position: 0 0;
    }

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