@font-face {
    font-family: Ubuntu-Bold;
    src: url(Ubuntu-Bold.ttf);
}

@font-face {
    font-family: Ubuntu-Regular;
    src: url(Ubuntu-Regular.ttf);
}

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

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

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

body {
    font-family: Ubuntu-Regular;
    color: white;
    background: rgb(35, 28, 149);
    background: linear-gradient(90deg, rgba(35, 28, 149, 1) 0%, rgba(91, 57, 119, 1) 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

a:link {
    color: #9bdcff;
}

a:visited {
    color: hsl(252, 100%, 87%)
}