/* Algemene CSS */
* {
  margin: 0;
  padding: 0;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  box-sizing: border-box;
  color: white;
  text-decoration: none;
}
/* Opmaak body + navbar*/

body{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75),rgba(0, 0, 0, 0.25)), url(../media/background.jpg);
  background-size:cover;
  background-position: center;
}
header{
  font-size: larger;
  width: 85%;
  margin: auto;
  padding:35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
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: white;
 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: white;
  
}
.pers ul, .real ul{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100%+5px);

  background-color: transparent;
  min-width: 100px;
  box-shadow: 2px 2px 5px rgb(255, 255, 255);
  border: 1px solid white;
  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;
}
.pers a:hover, .real a:hover, .home a:hover{
  color: rgb(131, 3, 3);
  transition: 0.2s;
}
.s{
  color: rgb(131, 3, 3);
}
/*Opmaak buttons & main*/
main{
  margin: auto;
  width: 100%;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}
button{
  width: 200px;
  padding: 15px 0;
  text-align: center;
  margin: 20px 10px;
  border-radius: 25px;  
  font-weight: bold;
  font-size: large;
  border: 2px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
button > span{
  background: white;
  
  height: 100%;
  width: 0;
  border-radius: 25px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.5s;
}
button > a{
  color: inherit;
  text-decoration: none;
  
}
button:hover span{
  width:100% ;
}
button:hover{
  border: none;
  color: #830303;
}
.h1{
  margin-bottom: 20px;
}