#Header {
	display: block;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0, 0, 0, 0);

	position: relative;
	top: 120px;
}

#Header > h3 {
	text-align: center;
	text-decoration: underline;
	font-size: 32px;
	/* 3.33vh - is default */
	/* Make the size smth that can be scaled down with the size of the window*/
	font-family: monospace;
	letter-spacing: 5px;

	background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: rainbow_animation 6s ease-in-out infinite;
	background-size: 400% 100%;
}

@keyframes rainbow_animation {

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

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