*{
	margin: 0;
	padding: 0;
}
.header{ /* voor dat lijntje aan de bovenkant */
    border-bottom: 2px solid white; 
    padding: 5px;
}
.main{
	width: 100%;
	min-height: 100vh;
	font-family: sans-serif;
	background:
		linear-gradient(to top, rgba(5,25,45,0.4), rgba(5,25,45,0.2)),
		url("../img/achtergrond.jpg"); /* afbeelding gelinkt aan de bovenste kleur, w3schools en youtube tutorial. ik wist niet hoe dit                                                 moest*/
    background-position: center;
	background-size: cover;
}

.navbar{
	display: flex; /* inplaats van float, geeft een betere layout, w3schools */
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.logo{ /* w3schools */
	color: orange;
	font-size: 40px;
	font-family: cursive;
	cursor: pointer;
}

.menu ul{
	display: flex; /* inplaats van float, geeft een betere layout, w3schools */
	list-style: none;
	gap: 60px;
}

.menu ul a{ /* w3schools */
	color: white;
	font-family: sans-serif;
	font-weight: bold;
	text-decoration: none;
	font-size: 16px;
	transition: .4s ease;
}

.menu ul a:hover{ /* uit een youtube tutorial */
	color: orange;
}

.footer{ /* uit een youtube tutorial en deels w3schools */
    text-align: center;
    padding: 20px;
    background-color: rgba(5,25,45,0.8);
    color: white;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.title{ /* w3schools */
	text-align: center;
	color: white;
	padding-top: 50px;
	padding-left: 20px;
    padding-right: 20px;
	padding-bottom: 50px;
}

.title ul{ /* w3schools */
    list-style-position: inside; 
    display: inline-block;       
    text-align: left;            
    margin-top: 20px;          
    color: white;
}

.title ul li{
    font-size: 18px;
    line-height: 1.8;           
    font-family: sans-serif;
}

.title h1{
	color: white;
    font-size: 40px;        
    margin-bottom: 20px;
	font-family: sans-serif;
}

.title p{
	color: white;  
	max-width: 800px;
	margin: 0 auto;
    font-weight: normal;
	line-height: 1.6;
	font-family: sans-serif;
}

.about{
	max-width: 900px;    
    margin: 0 auto;      
    padding: 50px 20px;  
    color: white;
}

.about p{
	color: white; 
    line-height: 1.6;
    margin-bottom: 20px; 
}

.about h2{
    margin-top: 30px;    
    margin-bottom: 10px; 
    font-size: 25px;
}

.video-about{
    text-align: center;    
    margin: 30px 0;       
}

.video-about iframe{ /* w3schools daarna gevraagd aan chatgpt */
    border-radius: 12px;  
    max-width: 100%;       
}

.vormen{
	max-width: 900px;    
    margin: 0 auto;      
    padding: 50px 20px;  
    color: white;
    font-family: sans-serif;
}

.vormen p{
	color: white; 
    line-height: 1.6;
    margin-bottom: 20px; 
}

.vormen ol{
	color: white;  
    margin-left: 325px;
}

.vormen li{
	color: white;  
    margin-bottom: 10px;
}

.vormen h2{
    margin-top: 30px;    
    margin-bottom: 10px; 
    font-size: 25px;
}

.vormen img{ /* w3schools */
    display: block;      
    margin: 30px;      
	width: 450px;
	height: 250px;
	background-color: white;
}

.zorg table{ /* w3schools, gecheckt met chatgpt */
    width: 80%;
    margin: 50px auto;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.2); 
    color: white;
}

.zorg caption{
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

.zorg th, td{
    border: 2px solid white; 
    padding: 10px;
    text-align: center;
}

.zorg thead{
    background-color: rgba(0, 0, 0, 0.7); 
}

.zorg tfoot{
    background-color: rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.contact{
    text-align: center; 
    color: white;
    padding-bottom: 50px;
}

.contact h2{
    margin-top: 50px;
    font-size: 30px;
}

.contact form{
    width: 60%;
    margin: 30px auto; 
    background-color: rgba(5, 25, 45, 0.9); 
    padding: 30px;
    border: 3px solid white;
    border-radius: 15px;
    text-align: left; 
}

.contact input, /* w3schools */
.contact select, 
.contact textarea{
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box; 
    border-radius: 5px;
    border: 1px solid rgb(204, 204, 204);
}

.contact input[type="radio"], /* w3schools */
.contact input[type="checkbox"]{
    width: auto;
    margin-right: 10px;
}

.contact button{ /* w3schools en opgezocht */
    width: 100%;
    padding: 12px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.contact button:hover{ 
    background-color: rgb(230, 149, 0); 
}

.verhaal{
	max-width: 900px;    
    margin: 0 auto;      
    padding: 50px 20px;  
    color: white;
}

.verhaal p{
	color: white; 
    line-height: 1.6;
    margin-bottom: 20px; 
}

.verhaal h2{
    margin-top: 30px;    
    margin-bottom: 10px; 
    font-size: 25px;
}