/* =========================
   GLOBAL
========================= */

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden; /* KEIN SCROLLEN */
	font-family: Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

/* =========================
   LAYOUT
========================= */

.page-wrapper {
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.content-wrapper {
	flex: 1;
	display: flex;
}

/* =========================
   NAVBAR
========================= */

#nav-main {
	width: 100%;
}

.navbar-full {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	display: flex;
	align-items: center;
}

.navbar-brand {
	padding-left: 0px;
}

.navbar-collapse {
	justify-content: flex-end;
	padding-right: 0px;
}

/* =========================
   HERO (PERFEKT FIT SCREEN)
========================= */

header.masthead {
	width: 100%;
	height: calc(100vh - 56px); /* exakt Bildschirmhöhe minus Navbar */
	background: url('/_assets/images/web-icons/gaming.jpg') center center / cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
}

.hero-center {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
	padding: 20px;
}

.hero-center h1 {
	font-size: 48px;
}

.hero-center h2 {
	font-size: 20px;
	font-weight: 300;
}

/* =========================
   BUTTON
========================= */

#Button {
	margin-top: 20px;
}

/* =========================
   FOOTER (IMMER UNTEN)
========================= */

footer {
	background: #060606;
	color: #fff;
	text-align: center;
	padding: 15px 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
	.hero-center h1 {
		font-size: 28px;
	}

	.hero-center h2 {
		font-size: 16px;
	}
}