@charset "utf-8";
/* CSS Document */


body {
    background-color: #404944;
}

.header {
    background-color: #333; 
    padding: 10px 20px; 
}

.header nav {
    display: flex; 
    justify-content: center;
    gap: 20px; 
}

.header nav a {
    color: white; 
    text-decoration: none; 
    font-size: 18px; 
    font-weight: bold; 
    padding-bottom: 5px;
    border-bottom: 2px solid transparent; 
}


.home-sci {
    display: flex; 
    justify-content: right; 
    gap: 15px;
    margin: 20px 0; 
}


.home-sci a {
    text-decoration: none;
    color: #FFFFFF; 
    font-size: 30px; 
} 
	

h2 {
    text-align: center;
    font-size: 28px;
	color: beige;
}

h3 {
	color: beige;
	text-align: right;
	font: normal;
	
}

p {
    text-align: center;
	color: beige;
}

.afbeelding {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
}

.afbeelding img {
    width: 70%; 
    height: 120Spx; 
}

.contact {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px; 
    margin: 20px auto;
    max-width: 1200px;
}

.contact-info {
    flex: 1;
    font-size: 18px; 
    color: #333; 
    line-height: 1.6; 
}

.header-afbeelding {
    position: relative; 
    width: 100%; 
    height: 400px;
    background-image: url("../afbeeldingen/headerafebeelding.jpg");
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
}

.header-afbeelding h1 {
	 position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 36px; 
    text-align: center; 
}

.home-af {
    display: grid; 
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
    justify-items: center; 
}


.home-af img {
    width: 100%;
    max-width: 500px; 
    height: 400px; 
    border-radius: 10px; 
	
}

.home-af img:hover {
    transform: scale(1.05); 
}

.afbeelding img:hover {
    transform: scale(1.30);
}




