html, body {
	height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: auto;
}

body {
	margin: 0;
	/*background-color: lightgray;*/
}

header {
    /*border: red 1px dotted;*/
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    background: radial-gradient(rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 70%);
}

main {
    overflow: auto;
    padding: 5%;
}

#lang {
    text-align: right;
}

#logoText {
    display: flex;
}
#logoText p {
    font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', 'Arial Black', 'sans-serif';
    align-self: center;
    justify-content: space-between;
    font-size: 30px;
    margin: 0 20px;
    color: gray;
    text-shadow: white 1px 1px 0, #d0b743 -1px -1px 0;
}

nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin: 10px;
}

.menuButton {
	box-shadow: 3px 7px 0px 0px #1564ad;
	background: linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
	background-color: #79bbff;
	border-radius: 5px;
	border: 1px solid #337bc4;
	display: inline-block;
	cursor: pointer;
	color: #ffffff;
	font-family: Arial;
	font-size: 28px;
	font-weight: bold;
	width: 280px;
	padding: 10px;
	margin: 10px 5px 10px 5px;
	text-decoration: none;
	text-shadow: 0px 1px 0px #528ecc;
	text-align: center;
}
.menuButton:hover {
	background: linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
	background-color: #378de5;
}
.menuButton:active {
	position: relative;
	top: 1px;
}

h1 {
    color: #fff; 
    width: 80%;
    position: relative;
    left: 10%;
    align-self: center;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
    background: radial-gradient(rgba(45, 143, 226, 0.5) 0%, rgba(45, 143, 226, 0) 70%);
    font-size: 60px; 
    font-weight: 700;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0px;
    margin-bottom: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
}