@font-face {
	font-family: 'TypeWrong';
	src: url(resources/typwrng.ttf);
}

@font-face {
	font-family: 'Roboto', sans-serif;
	src: url(resources/RobotoFlex.ttf);
}

*{
	font-family: 'TypeWrong';
	color: white;
	font-size: 1em;
	transition: all 0.2s ease-in-out;
	flex-wrap: wrap;
	outline: none;
	/*border: 1px solid red; /*border for flexbox testing*/
}

html, body{
	display: flex;
	height: 100%;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	word-break: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
	scroll-behavior: smooth;
	justify-content: center;
	align-items: center;
	background-color: black;
}

h1{
	color: DodgerBlue;
}

a{
	text-decoration: none;
	color: DodgerBlue;
}

ul{
	margin: 0em;
}

ul li{
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

a:hover:not(.activetab){
	color: White;
}

.activetab{
	color: White;
}

.activetab:hover{
	color: DodgerBlue;
}

main{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 1em;
	max-width: 50em;
}

header{
	width: 100%;
	display: flex;
}

content{
	width: 100%;
	display: flex;
	text-align: justify;
	flex-direction: column;
	line-height: 1.35em;
}

footer{
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-top: 0.67em;
  	margin-bottom: 0.67em;
}

footer div{
	margin: 0.25em 1em;
}
