* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the header */
.header {
  background-color: rgb(18, 121, 255);
  padding: 20px;
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: rgb(255, 252, 65);
  color:rgb(33, 111, 255)
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: DimGray;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #fa8282;
  color: rgb(44, 93, 255);
}

/* geeft aan dat pagina actief is*/
.topnav .focus {
  background-color: rgb(255, 252, 65);
  color: rgb(33, 111, 255);
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

/* Left and right column */
.column.side {
  width: 25%;
  background-color: rgb(255, 194, 102);
}

/* Middle column */
.column.middle {
  width: 50%;
  background-color: rgb(18, 121, 255);
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

 body {
 background-image: url("images/homepage.webp");
 }