/* manrope-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/manrope-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/manrope-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
  --red: #cc3333;
  --text: #121d22;
  --grey: #DDD;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

*{
	margin:0;
	border:0;
	padding:0;
	box-sizing: border-box;
}

img,
svg,
iframe,
canvas,
[style*='inline-block'] {
	vertical-align: middle;
}

body {
	font-size: 1rem;
	line-height: 1.4rem;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto; 
	color: var(--text);
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
}


a:link, a:visited {
	text-decoration:none;
	-webkit-transition: all 0.2s ease-in-out;
	 -moz-transition: all 0.2s ease-in-out;
	 -o-transition: all 0.2s ease-in-out;
	 transition: all 0.2s ease-in-out;
	 color: var(--red);
}

a:hover {
	text-decoration:none;
	color: var(--text);
}

h1 {
	font-size: 2rem;
	line-height: 2.3rem;
	font-weight:bold;
	margin-bottom: 5px;
	text-transform: uppercase;
}

h2 {
	font-size: 1.8rem;
	line-height: 2rem;
	font-weight:bold;
	margin-bottom: 5px;
	text-transform: uppercase;
}

h3 {
	font-size: 1.6rem;
	line-height: 1.8rem;
	font-weight:bold;
	margin-bottom: 5px;
	text-transform: uppercase;
}

h4 {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: bold;
	margin-bottom: 5px;
	text-transform: uppercase;
}

h5, h6 {
	font-size: 1.1rem;
	font-weight:normal;
	margin-bottom: 5px;
	text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
	hyphens: manual;
}

.black {
	color: var(--text);
}

header {
	max-width: 1600px;
	width: 100%;
	margin: auto;
	padding: 40px 0;
	border-bottom: 1px solid var(--grey);
}

#logo {
	font-size: 3rem;
	font-weight: 700;
	color: var(--red);
}

.imprint {
	margin-top: 8%;
	text-align: center;
	width: 100%;
	padding: 40px;
}

@media only screen and (max-width: 1600px) {
	header {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media only screen and (max-width: 500px) {
	body {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	header {
		text-align: center;
	}
}