/* Header */
header {
    position: fixed;
    top: 0;
    left: 10%;
    z-index: 1;
}

/* Body */
body {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, th, td, p, label, input {
    font-family: 'Open Sans';
    color: white;
    margin: 0;
    padding: 0;
}

.background-gradient {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	background: linear-gradient(300deg,#17043d,#1d2736,#2d2d4b);
	background-size: 180% 180%;
	animation: gradient-animation 15s ease infinite;
}

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