/* Required for full background image */
@import url('https://fonts.googleapis.com/css?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css?family=Indie+Flower&display=swap');

.rgba-gradient {
    background: linear-gradient(-45deg, rgba(17,45,84,0.6), rgba(67,0,176,0.6), rgba(89,182,235,0.6), rgba(245,245,245,0.6));
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

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

.hr-light {
    border-top: 3px solid #fff;
    width: 120px;
}