html, body {
    height: 100vh 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(-45deg, #004AAD, #CB6CE6, #004AAD, #CB6CE6);
	background-size: 1000% 1000%;
	animation: gradient 15s ease infinite;
}

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

a {
    text-decoration: none;
    font-weight: bolder;
    color: #ffde59;
}