@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;900&display=swap');
*{	padding: 0; 
	margin: 0;
	box-sizing: border-box;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{

	background-color: rgb(202, 202, 202);
}



.logo{
	display: flex;
	font-size: 40px;
	font-weight: 800;
	color: black;
	letter-spacing: 3px;
	cursor: pointer;
	text-transform: uppercase;
}

.logo a{
	text-decoration: none;
	color: black;
}


.hoofdTekst{
	display: flex;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	padding: 0 10%;
	overflow: hidden;
}

.cols{
	width: 50%;
}

.topline{
	display: block;
	position: relative;
	font-size: 35px;
	color: black;
}


h1{
	display: block;
	font-size: 4em;
	font-weight: 900;
	color: black;
}

.multiText{
	color: red;
	text-transform: capitalize;
}

p{
	display: block;
	width: 90%;
	font-size: 2em;
	color: black;
	text-align: center;
}

.foto img{
	width: 80%;
	position: relative;
	border-radius: 50%;
	top: -50px;
	right: 5px;
	margin-left: auto;
	margin-right: auto;
	animation: animateUser 4s linear;
}

@keyframes animateUser{
	50%{
		right: 10px;
		top: -80px;
	}
}

iframe{
	margin: auto;
	display: block;
	height: 90vh;

}

video{
	width: 60%;
	margin: auto;
	display: block;
	margin-top: 3%;
}

#download{
	text-align: center;
	display: block;
	margin: auto;
}

@media only screen and (max-width: 768px) {
	.navigation {
		flex-direction: column;
		align-items: center;
	}

	.navigation li {
		margin: 10px 0;
	}

	.logo {
		font-size: 28px;
		letter-spacing: 2px;
	}

	.hoofdTekst {
		padding: 0 5%;
	}

	.cols {
		width: 90%;
	}

	.topline {
		font-size: 22px;
	}

	h1 {
		font-size: 2.5em;
	}

	p {
		font-size: 1.3em;
	}
}
.navigatie {
    padding: 0 15px;
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    z-index: 999;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    margin-right: 20px;
    width: 60px;
    height: auto;
}

.site-title {
    color: #000;
    font-size: 2em;
	font-weight: 800;
	letter-spacing: 3px;
	cursor: pointer;
	text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    max-width: 1800px;
    margin: auto;
}

nav ul {
    list-style: none;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #fff;
    width: 85vw;
    max-width: 400px;
    padding: 20px;
    display: none;
}

nav ul li {
    padding: 10px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    border-bottom: 2px solid #000;
}
@media(max-width: 992px) {
    ul.navmenu {
        display: block;
        position: absolute;
    }
}



li{
	color: black;
	list-style: none;
}

a{
	color: black;
	text-decoration: none;
	font-size: 1.2em;
}

a:hover{
	color: red;
}

.linkengels{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	margin-top: 40px;
}