* {
    margin: 0;
    padding: 0;
}
.main {
    width: 100%;
    background-image: url("achtergrond.jpg") ;
    background-position: top;
    background-size: cover;
    height: 100vh;
}

/* Header */

nav{
    
    display: flex;
    padding: 0% 2%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 130px;
}
.nav-links{
    flex: 1;
    text-align: center;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    margin: 8px 3%;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    font-size: clamp(18px, 2vw, 28px);
    color: #000000;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transition: transform 0.25s ease-out;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Center */

.info {
    width: 50%;
    float: left;
    text-align: center;
}
.mySlides {
    margin: 20% 0% 10% 25%;
}
h1 {
    font-size: 35px;
}
p {
    margin-top: 5%;
}
.selfie {
    height: 70%;
    margin: 1% 5% 0px 10%;
    border-radius: 50px;
}
.mySlides {
    display: none
}
.slideshow-container {
  position: relative;
  margin: auto;
}
.load {
    margin: 10% 0% 10% 25%;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgba(97, 90, 90, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media screen and (max-width: 768px) {
    .info {
      float: none;
      width: 40%;
      margin: auto;
      font-size: 100%;
    }
    .mySlides {
      margin: 20% 0% 10% 0%;
    }
    .load {
      margin: 10% 0% 10% 0%;
    }
    .selfie {
      display: none;
    }
    h1 {
      font-size: 2em;
    }
}