* {
  box-sizing: border-box;
}

body {
  margin: 5px;
  background-color:AliceBlue;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url("images.jpg/kaiba.jpg");
}
/* style voor de tabbel*/
table, th, td {
  border: 1px solid;
}
/* li teken */
ul { list-style-type:disc;}

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

/* Style the header */
.header {
  padding: 40px;
  text-align: center;
  background-color:aliceblue;
}

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

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

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

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


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

/* Middle column */
.columnright {
  float: left;
  width: 25%;
  background-color: lightblue;
  color:orchid;
}

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



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