* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #854a07;
  color: #ab5e07
  
}

/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  background-image: url("images/a.jpg") ;
  width: 2048;
  background-color: black;
  color: black
}

.header h1 {
  font-size: 50px;
  color: black
}

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

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  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: beige;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  width: 95;
  background-color: #854a07;
  text-align: center;
}

/* Add a card effect for articles */
.card {
  background-color: black;
  padding: 20px;
  margin-top: 20px;
}

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

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  background-color: black;
  margin-top: 20px;
}