/* Site Body itself */
body{
	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
	/* Font settings */
	font-family: Arial;
	font-size: 20px;
	color: white;
	/* No white space around page caused by margin or padding */
	padding: 0;
	margin: 0;
}
/* Elements themselves */
section{
	flex-basis: 0;
	flex-grow: 1;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	padding: 10px;
	border: 0;
	border-radius: 6px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
	margin: 7px;
}
section>div{
	display: flex;
	flex-flow: column nowrap;
}
h1{
	font-size: 28px;
}
h2{
	font-size: 25px;
}
h3{
	font-size: 22px;
}
p{
	margin-top: 3px;
	margin-bottom: 3px;
}
a{
	color: white;
	text-decoration: underline;
	cursor: pointer;
}
/* Header */
header{
	display: flex;
	justify-content: center;
	padding-top: 200px;
	padding-bottom: 200px;
	/* Background image is under CC0 license, so no Copyright needed! */
	background-image: url("/images/background_min_31-05-2020_15-25.png");
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}
div#headercontent{
	display: inline-block;
	text-align: center;
	padding: 30px;
	background: rgb(29, 29, 29);
}
p#sitetitle{
	color: white;
	font-size: 1.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
}
p#sitesubtitle{
	font-size: 1.2em;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
    line-height: 1.25;
}
/* Navigation */
nav#menu{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: start;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: rgb(68, 68, 68);
	text-align: left;
	background: rgb(29, 29, 29);
}
a.menuitem{
	display: inline-block;
	padding: 5px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
	margin-left: 5px;
	margin-right: 5px;
	text-decoration: none;
	cursor: pointer;
}
a.menuitem.active{
	color:white;
}
/* Sections */
div#sections{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
}
section.blue{
	background: linear-gradient(40deg, #45cafc, #303f9f);
}
section.aqua{
	background: linear-gradient(40deg, #2096ff, #05ffa3);
}
section.orange{
	background: linear-gradient(40deg, #ffd86f, #fc6262);
}
.hidden{
	display: none;
}
/* Responsive layout */
div.mobilebreak{
	display: none;
}
.hideonmobile{
	display: initial;
}
.showonmobile{
	display: none;
}
@media(max-width: 1000px){
	div#sections{
		flex-flow: row wrap;
	}
}
@media(max-width: 600px){
	header{
		padding-top: 170px;
		padding-bottom: 170px;
	}
	p#sitetitle{
		font-size: 1.5em;
	}
}
@media(max-width: 550px){
	nav#menu{
		flex-flow: column nowrap;
		justify-content: center;
		align-items: start;
	}
	nav#menu>span{
		display: none;
	}
	a.menuitem{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.hideonmobile{
		display: none;
	}
	.showonmobile{
		display: initial;
	}
}
@media(max-width: 500px){
	div#sections{
		flex-flow: column nowrap;
	}
	header{
		padding-top: 150px;
		padding-bottom: 150px;
	}
	p#sitetitle{
		font-size: 1.4em;
	}
	div.mobilebreak{
		display: inline-block;
	}
}
@media(max-width: 400px){
	header{
		padding-top: 130px;
		padding-bottom: 130px;
	}
	p#sitetitle{
		font-size: 1.3em;
	}
	p#sitesubtitle{
		font-size: 1.1em;
	}
	div.mobilebreak{
		display: inline-block;
	}
}