body {
	border: 0px;
	margin: 0px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@font-face {
    font-family: 'mainSectionFont';
    src: url('./res/fonts/GreatVibes-Regular.ttf'); /*URL to font*/
}

section#mainSection {
	display: block;
	width: 100%;
	height: 90vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

@media (orientation: landscape) {
	section#mainSection {
		background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('res/landscape.jpg');
	}
	section#mainSection h1, section#mainSection h2 {
		margin: 0.5em 0px;
	}
}

@media (orientation: portrait) {
	section#mainSection {
		background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.25)),url('res/portrait.jpg');
	}
	section#mainSection h1 {
		margin: 0px 0px 1.75em 0px;
	}
	section#mainSection h2 {
		margin: 1.75em 0px 0px 0px;
	}
}

section#mainSection div.centered {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	height: 100%;
}

section#mainSection div.headlines {
	font-family: 'mainSectionFont';
	text-align: center;
	color: #FFFFFF;
}

section#mainSection h1 {
	font-size: 6em;
}
section#mainSection h2 {
	font-size: 4em;
}

section#roadmap div.elementscontainer {
	margin: 0px auto;
	width: fit-content;
	padding: 3em 16px;
}

section#roadmap .elementscontainer .element {
	margin: 2em auto;
	color: #2c2c2e;
	text-align: left;
	padding: 0px 0.5em ;
	border-left: 1px solid #000000;
}

section#roadmap .element p.title {
	font-size: 1.5em;
	color: #000000;
	font-weight: bold;
}

section#roadmap .element p.whenwhere {
	font-size: 1.2em;
}

section#roadmap .element a {
	color: #2c2c2e;
	text-decoration: none;	
}

section#hotel {
	text-align: center;
}

section#hotel h2 {
	font-size: 2.5em;
	margin-bottom: 0.5em;
}

section#hotel p, section#hotel ul {
	font-size: 1.2em;
}

section#hotel ul {
	list-style-type: none;
	list-style-position: inside;
	display: inline-block;
	padding: 0px;
	margin: 0px;
}
section#hotel ul li {
	display: block;
	margin: 16px;
}

section#hotel a {
	display: block;
	text-decoration: none;
	border-radius: 12px;
	padding: 16px;
	border: 4px solid #f2f2f7;
	background-color: #f2f2f7;
	color: #000000;
}

@media (hover: hover) and (pointer: fine) {
	section#hotel a:hover {
		background-color: #FFFFFF;
	}
}

section#hotel {
	text-align: center;
	display: block;
}

section#thanks {
	padding: 2em 0px;
}

section#thanks h2 {
	text-align: center;
	font-size: 2em;
	margin-bottom: 0.5em;
}

section#thanks p {
	display: block;
	margin: 0px auto;
	width: fit-content;
	font-size: 1.2em;
}