* {
  margin: 0;
  padding: 0;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  text-decoration: none;
}
/* Opmaak body + navbar*/
header{
  font-size: larger;
  width: 85%;
  margin: auto;
  padding:35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.overview{
    background-image: linear-gradient(rgba(0, 0, 0, 0.75),rgba(0, 0, 0, 0.25)), url(../media/background.jpg);
    width: 100%;
}
header ul li{
  list-style: none;
  display: inline-block;
  margin: auto;
  position: relative;
  padding: 5px 0;
  list-style: none;
  

  
}
.pers, .real{
 background-color: transparent;
 color: rgb(255, 255, 255);
 padding: 10px 15px;
 cursor: pointer;
}
.pers ul li, .real ul li{
  padding: 8px 12px;
  white-space: nowrap;
  list-style: none;
}
 

.pers a , .real a {
  display: block;
  color: rgb(255, 255, 255);
  
}
.pers a:hover, .real a:hover, .home a:hover{
  color: rgb(131, 3, 3);
  transition: 0.2s;
}
.pers ul, .real ul{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100%+5px);

  background-image: linear-gradient(rgba(0, 0, 0, 0.75),rgba(0, 0, 0, 0.25)), url(../media/background.jpg);
  background-size: cover;
  min-width: 100px;
  box-shadow: 2px 2px 5px #222;
  border: 1px solid #222;
  border-radius: 5px;
  text-align: center;
  padding: 5px 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.5s ease;
  
}
.pers:hover ul, .real:hover ul{
  opacity: 1;
  visibility: visible;
  

}
.s{
  color: rgb(131, 3, 3);
}
.align-center{
    text-align: center;
    color: #222;
    font-weight: bolder;
    
}
main> h1{
    padding-top: 5%;
    font-weight: bolder;
    font-style:normal;
    text-decoration: underline rgb(131, 3, 3);
}
/*OPmaak main*/
