@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;600&display=swap');

* {
	font-family: 'Barlow', sans-serif;
	font-weight: 300;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	margin: 0;
	min-height: 100%;
	padding: 0px;
	position: relative;
	width: 100%;
}

.main-wrapper {
	height: 100%;
	width: 100%;
	max-width: 900px;
	padding: 20px;
	margin: 0 auto;
}

.header-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 35px;
}

.header-wrapper img {
	width: 100%;
	max-width: 400px;
}

.content-wrapper {
	margin-top: 50px;
	margin-bottom: 50px;
}

.content-inner {
	border-bottom: 4px solid black;
	padding-top: 50px;
	padding-bottom: 30px;
}

.content-inner:first-child {
	border-top: 4px solid black;
}

h1 {
	font-size: 3rem;
	font-weight: 600;
	padding: 0;
	margin: 0;
}

p {
	font-size: 2rem;
	line-height: 2.5rem;
}

b {
	font-weight: 800;
}

.aktualisiert {
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
}