* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: White;
  font-family: Arial, Helvetica, sans-serif;
}



#wrapper {
    width: 1000px;
	margin: auto;
}

/* Style the header */
.header {
  background-color: #E66E1B;
  padding: 20px;
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #E66E1B;
}

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

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* geeft aan dat pagina actief is*/
.topnav .focus {
  background-color: white;
  color: black;
}


/* Create two unequal columns that floats next to each other */
/* Left and right column */
.columnleft {
  float: left;
  padding: 10px;
  width: 50%;
  background-color: white;

}

/* Middle column */
.columnright {
  float: left;
  padding: 10px;
  width: 50%;
  background-color: white;
}

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

footer {
	height: 50px;
	background-color: AliceBlue;
	color: Orchid;
	text-align: center;
	padding: 2px;
}





