/* General things for the whole page*/
* {
	font-family: "Noto Sans", sans-serif;
}
html {
	height:100%;
	background-size: 1% 1%;
	background-color: rgba(3, 5, 42, 1);
	background-blend-mode: multiply;
}
footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 10px;
}

/* Stuff for links */
a:link {
	color: white;
	background-color: transparent;
	text-decoration: none;
	}
a:visited {
	color: white;
	background-color: transparent;
	text-decoration: none;
}
a:hover {
	color: white;
	background-color: transparent;
	text-decoration: underline;
}
a:active {
	color: white;
	background-color: transparent;
	text-decoration: underline;
}

/* Element-specific stuff */

#flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#header {
	width: 100%;
	height: auto;
	background: #2d1556;
	line-height: 1;
	text-align: center;
	color: #d9d9d9;
	max-width: 1000px;
	border-style: inset;
	border-width: thick;
	border-color: #1d0546;
	margin-bottom: 10px;
	align-items: center;
	display: flex;
	justify-content: center
}

#maintext {
	width: 100%;
	height: auto;
	background: #0e1464;
	line-height: 1.2;
	text-align: center;
	color: #d9d9d9;
	max-width: 970px;
	border-style: inset;
	border-width: thick;
	border-color: #080454;
	margin-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
}

#logo {
	height: 10%;
	width: 10%;
	padding-right: 20px;
}

#icon {
	width: 30px;
	float: center;
	padding: 4px
}

#banner {
	width: 100%;
	height: auto;
	background: #070954;
	background: linear-gradient(150deg, rgba(7, 9, 84, 1) 0%, rgba(4, 8, 124, 1) 12%, rgba(58, 21, 50, 1) 50%, rgba(141, 45, 3, 1) 88%, rgba(99, 32, 8, 1) 100%);
	line-height: 1;
	text-align: center;
	color: #d9d9d9;
	max-width: 1000px;
	border-style: inset;
	border-width: thick;
	border-color: #1d0546;
	margin-bottom: 10px;
	align-items: center;
	display: flex;
	justify-content: center;
	font-size: 36px
}
