/* ==========================================================================
Gradient styles
========================================================================== */

body {
    background: linear-gradient(92.00deg,#e7405a -2.0%,#4f3dd5 45.0%);
    background-size: 400% 400%;
    animation: GradientBackground 10s ease infinite;
}

@keyframes GradientBackground {
    0% {
        background-position: 0% 50%;
    }

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

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

.hero-body .subtitle.is-muted {
    color: #fff;
}

.title {
    color: #fff;
}
