body {
display: flex;
flex-direction: column;
align-items: center; /* horizontaal midden */
justify-content: center; /* verticaal midden */
min-height: 100vh; /* zorgt dat het scherm volledig wordt gebruikt */
margin: 0;
}
li {
list-style: none; /* haalt die bullets weg */
margin: 5px 0; /* beetje ruimte tussen de links */
}
a {
text-decoration: none; /* haalt de onderstreping weg */
color: blue; /* kan je kleur aanpassen */
font-size: 18px;
}