body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: aliceblue;
}

/* Global */
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.button {
  height: 38px;
  background-color: rgb(254,120,51);
  border: 0;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  color: white;
  font-weight: bold;
  transition: background-color 1s ease 0.5s; 
  /* duur 1s, vertraging 0.5s */
}

.button:hover {
  color: black;
}

/* Header */
header {
  background-color: rgb(36,56,55); ;
  color: white;
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 70px;
  border-bottom: 3px solid rgb(254,120,51);
}

header #logo {
  float: left;
  padding-right: 20px;
  width: 150px;
  height: auto;
}

header h1 {
  float: left;
}

header nav {
  float: right;
  margin-top: 30px;
}

header a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 1s ease 0.5s; 
  /* duur 1s, vertraging 0.5s */
}

header a:hover, .current a:hover {
  color: black;
  font-weight: bold;
}

header li {
  display: inline;
  padding: 0 20px;
}

header .highlight, header .current a {
  color: rgb(254,120,51);
  font-weight: bold;
}

/* Showcase */
#showcase {
  min-height: 400px;
  background: url(../img/showcase.jpg);
  background-size: cover; /* vult het element volledig */
  background-position: center;
}

#showcase {
  position: relative;
  height: 300px;
  overflow: hidden;
  text-align: center;
}

#showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/showcase.jpg) center/cover;
  filter: blur(2px); /* vervaging */
  z-index: 0;
}

#showcase h1, p {
  position: relative;
  z-index: 1;
  color: white;
}

#showcase h1 {
  margin-top: 100px;
  font-size: 55px;
  margin-bottom: 10px;
}

#showcase p{
  font-size: 20px;
}

/* Newsletter */
#newsletter {
  padding: 15px;
  color: white;
  background-color: rgb(36,56,55);
}

#newsletter h1 {
  float: left;
}

#newsletter form {
  float: right;
  margin-top: 15px;
}

#newsletter input[type="email"] {
  padding: 5px;
  height: 27px;
  width: 250px;
  border: 0;
  border-radius: 5px;
}

/* Boxes */
#boxes {
  margin-top: 20px;
}

#boxes .box {
  float: left;
  text-align: center;
  width: 30%;
  padding: 10px;
}

#boxes .box img {
  width: 90px;

}

/* Footer */
footer {
  padding: 20px;
  color: black;
  background-color: rgb(254,120,51);
  text-align: center;
  border-top: 3px solid rgb(36,56,55);
}

footer .author {
  font-weight: bold;
}

footer p {
  color: black;
  font-size: smaller;
}