@charset "utf-8";
/* 

Extra-light: 200
Regular: 400
Semi-bold: 600

*/

body {
	background-color: #f5f5f5;
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	background-image: url("img/background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

figure {
	margin: 0;
	padding: 0;
}

main {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: rgba(153,153,153,0.5);
	width: 750px;
	padding: 25px;
	border-radius: 10px;
}

main h1 {
	color: #0000ff;
	text-align: center;
}

main h2 {
	color: #fff;
	text-align: center;
}

main p {
	color: #fff;
}

main .flex {
	display: flex;
	justify-content: center;
}

main .flex article {
	width: 31%;
	color: #fff;
}

main .flex article:first-of-type a {
	text-decoration: none;
	display: inline-block;
}

main .flex article:last-of-type a {
	color: #fff;
	text-decoration: none;
}

main .flex article a:hover p, main .flex article a:hover {
	color: #0000ff
}

main .termin {
	font-size: 22px;
	padding: 10px 25px;
	margin: 25px auto;
	display: inline-block;
	color: #0000ff;
	border: solid 3px #0000ff;
	border-radius: 10px;
	text-decoration: none;
}

main .termin:hover {
	background-color: #0000ff;
	color: white;
}

main #logos {
	display: flex;
	justify-content: center;
	background-color: white;
	margin-top: 30px;
	padding: 15px 0;
}

main #logos figure {
	height: auto;
	width: 30%;
	align-self: center;
}

main #logos figure img {
	width: auto;
height: 100px;
margin: 0 auto;
display: block;
}

#disclaimer {
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}

#disclaimer img {
	width: 150px;
	height: auto;
}

@media only screen and (max-width: 1200px) {
	body {
		height: 100vh;
	}
}

@media only screen and (max-width: 900px) {
	main {
		position: relative;
		top: 0;
		left: 0;
		transform: inherit;
		width: 100%;
		padding: 25px 0 0;
	}
	
	#disclaimer {
		width: 90%;
		margin: 25px auto 0;
	}
	
	.intro-text {
		width: 90%;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 750px) {
	main .flex article {
    width: 100%;
    text-align: center;
}
	main .flex {
    display: block;
}
	main #logos figure img {
		height: 65px;
	}
	body {
		height: 100%;
	}
}

@media only screen and (max-width: 530px) {
	main h1 {
		font-size: 22px;
	}
	main .termin {
    font-size: 16px;
	}
	main #logos {
		display: block;
	}
	main #logos figure {
		width: 100%;
		margin-bottom: 40px;
	}
	main #logos figure img {
    height: auto;
    width: 250px;
}
}

@media only screen and (max-width: 440px) {
	#disclaimer {
		display: block;
		text-align: center;
	}
}