@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito');
body{
	margin: 0;
	font-family: 'Segoe UI', sans-serif;
	background: #f0f4f8;
	color: #333;
}
.red{
	color: red;
}
.gr{
	background-color: hsl(120, 70%, 90%);
    color: hsl(120, 80%, 30%);
    padding: 3px 5px;
    border-radius: 5px;
}
#to-top {
	cursor: pointer;
	color: hsl(44, 60%, 67%);
	font-size: 37px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	opacity: .7;
	transition: ease all .2s;
}
.clear{
	width: 100%;
	clear: both;
}
header {
	background: url(../afbeeldingen/bg.png) repeat-x, url(../afbeeldingen/bg-2.png) repeat-x -30px 0px, #4CAF50;
	color: white;
	padding: 3.3rem;
	box-sizing: border-box;
	text-align: center;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
header img{
	position: absolute;
	left: 25px;
	top: 10px;
}
@media(min-width: 1055px){
	header img{
		position: absolute;
		left: 25px;
		top: 10px;
	}
}
@media(max-width: 1054px){
	header img{
		width: 65px;
		position: absolute;
		left: 10px;
		top: 5px;
	}
}
header h1{
	margin: 0;
	font-size: 2.5rem;
	opacity: 0;
	text-transform: uppercase;
	transform: translateY(75px); /* startpositie iets lager */
	animation: fadeInUp 1s ease-out forwards;    
	font-family: "Nunito", cursive;
}
.fade-inup{
	font-size: 1.2rem;
	opacity: 0;
	transform: translateY(100px); /* startpositie iets lager */
	animation: fadeInUp 1.1s ease-out forwards;
}
nav{
	background: hsl(30, 100%, 55%);
	text-align: center;
}
nav a{
	display: inline-block;
	color: white;
	padding: 15px;
	text-decoration: none;
	font-weight: bold;
	transition: .3s ease all;
	background: hsl(30, 100%, 55%);
	margin: 0;
}
nav a:hover{
	background: #f0f4f8;
	color: hsl(30, 100%, 48%);
}
@keyframes fadeInUp {
	to{
		opacity: 1;
		transform: translateY(0);
	}
}
footer{
	display: flex;
	justify-content: center; /* verticale centrering als de footer hoogte heeft */
	width: 100%;
	background-color: #222;
	text-align: center;
	line-height: 35px;
	color: #fff;
	padding: 20px 0;
	box-sizing: border-box;
	margin-top: 80px;
}
footer a{
	color: hsl(30, 100%, 55%);
	text-decoration: none;
	transition: .2s eas all;
}
footer a:hover{
	text-decoration: underline;
}