/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("Sterren6.png");
  color: white;
  font-family: Verdana;
  font-size: 28px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex; /* Dit zorgt ervoor dat de <li> items naast elkaar staan */
  justify-content: space-between; /* Verdeelt de items gelijkmatig over de breedte */
}
 
nav {  
  overflow: hidden;
  background-color: #1F1B68;
  position: sticky; /*stickyyyyyyyyyyyyy*/
  top: 0;
}

li {
  flex-grow: 1; /* Zorgt ervoor dat elk <li> item evenveel ruimte inneemt */
  text-align: center; /* Zorgt ervoor dat de tekst binnenin gecentreerd is */
}

li a {
  display: block;  
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.active {
  background-color: #6248a2;
}

.container {
  background-color: #3b267a;
  margin: auto;
  width: 60%;
  
}

.container-top {
  background-color: #0B004F;
  margin: auto;
  width: 75%;
  
}


