body{
    font-family: Arial, sans-serif; /* De font in welk ik de tekst wou */
    margin: 0;
    background-color: #f4f4f4; /* En de kleur */
}
header{
    background-color: #c21807; /* De kleur van de achtergrond */
    color: white; /* Kleur van de tekst */
    text-align: center; /* Dat het in de midden van de pagina moet zitten */
    padding: 20px;    padding: 20px; /* Zodat het niet aan de randen plakt */
}
div{ 
	text-align: center; /* Om het in de center te houden */
}
table{
	text-align: center;
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    transition: all 0.3s ease; /* animatie snelheid */
}
nav ul li{
    display: inline-block;
    margin: 0 15px;
}
nav ul li a:hover{
    background-color: white;
    color: #c62828;
    border-radius: 5px;
}
main{
    width: 80%;
    margin: 40px auto;
    background-color: white;
    padding: 20px;
}
aside img{
    width: 200px;
    float: right;
    margin-left: 20px;
}
form{
    width: 60%;
    margin: 0 auto;
}
table, th, td {
  border: 1px solid ;
  border-collapse: collapse;
}
 th, td {
  border-color: #c21807;
}
caption { 
	color: #000; 
	font-weight: bold;
} 
footer {
    background-color: #c21807;       /* Zelfde achtergrond als de header */
    color: white;                 /* Witte tekst */
    text-align: center;           /* Tekst in het midden */
    font-size: 16px;             
}