@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url(./Montserrat/Montserrat-VariableFont_wght.ttf) format('truetype');
}

:root {
	--darkBlue: #002060;
	--lightBlue: #4479E3;
	--highlight: #ffc000;
	
	--white: #ffffff;
	--lightGrey: #c6c6c6;
	--veryLightGrey: #f5f5f5;
	--darkGrey: #424242;
}
body {
	color: var(--darkGrey);
	font-family: -apple-system, BlinkMacSystemFont, 'Montserrat', sans-serif;
	margin: 0px;
	font-weight: 400;
	background-color: var(--veryLightGrey);
	line-height: 1.5;
}

h1, h2 {
	font-weight: 400;
}

h1 {
	font-size: 3rem;
	background-color: var(--white);
	padding: 2rem;
	text-align: center;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-weight: 400;
}

h4 {
	font-weight: 400;
}
.gridContainer {
	display: flex;
	flex-direction: column;
	padding-top: 3rem;
}

.impressum {
	text-align: center;
}

p {
	text-align: center;
	margin-bottom: 1rem;
}

.button {
	background-color: var(--darkBlue);
	color: var(--white);
	padding: 1rem;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	text-decoration: none;
	transition: 0.5s;
}

.button:hover {
	background-color: var(--darkGrey);
}

@media only screen and (min-width: 800px) {
	.impressum {
		margin: 0rem 20rem 20rem 20rem;
	}
	p {
		margin-bottom: 3rem;
	}
}

