@keyframes slideInLeft {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInLeftShort {
  from {
    transform: translateX(-75px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(200px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-125px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInDownLong {
  from {
    transform: translateY(-200px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLong {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  margin: 0
}

.topnav {
  overflow: hidden;
  background-color: black;
}

.topnav .left-link {
  position: relative;
  /*margin-right: 80%; /* Verplaatsen naar rechts */
  float: left;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  font-family: Helvetica Neue;

  span {
    display: inline-block;
    position: relative;
    top: -8px;
    font-size: 13pt;
  }
}

.topnav a {
  float: left;
  position: relative;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  z-index: 999;
  /* Zorgt ervoor dat de navbar altijd bovenaan staat */
}

.topnav .icon {
  display: none;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.topnav .left-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 1200px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
    z-index: 999;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    z-index: 999;
  }
}

body {
  background-color: black;
}

.inhoud {
  padding: 15px;
  background-color: black;
  color:white;
  border-style: solid;
  border-width: 1px;

}

img {
  Height:auto;
  Width:auto;
}

.footer {
  padding: 5px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color:white;
  border-style: solid;
  border-width: 1px;
  border-color: black;
  background-color:black;
  clear: both; 
  text-decoration:none;
  z-index: 999;
}

.footer a{
  text-decoration:none;
  color:white;
  
  &:hover {
    color: gray;
    background: $color-accent;
    border-radius: 2px;
  }
}

.hero-section {
  height: 95vh;
  background: url('Images/Aarde.jpg') center right / 50% auto no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-section .content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: white;
}

.hero-section .content h2 {
  font-size: 5rem;
  max-width: 600px;
  line-height: 10px;
  animation-name: fadeIn;
  animation-duration: 2s;
}

.hero-section .content p {
  font-weight: 300;
  max-width: 600px;
  animation-name: fadeIn;
  animation-duration: 2s;
  margin-bottom: 35px;
}

.hero-section .content a.button {
  background-color: transparent;
  padding: 12px 30px;
  border: 4px solid white;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 38px;
  cursor: pointer;
  font-weight: 500;
  color: white;
  text-decoration: none;
  animation-name: fadeIn;
  animation-duration: 2s;
  transition: transform 0.3s ease;
}

.hero-section .content a.button:hover {
  color: black;
  background: white;
  transform: translateX(-10px);
}

.information-section {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: black;
}

.information-section .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 200px;
}

.information-section .content h2 {
  font-size: 5rem;
  max-width: 1000px;
  line-height: 70px;
  margin-bottom: 20px;
  animation-name: slideInLeft;
  animation-duration: 1s;
  animation-timeline: view();
}

.information-section .content p {
  font-weight: 700;
  max-width: 600px;
  margin-top: 10px;
  font-size: 1.25rem;
  animation-name: slideInUp;
  animation-duration: 1s;
  animation-timeline: view();
}

.about-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.about-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timeline: view();
}

.about-section .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section .content h2 {
  font-size: 2rem; /* was 5rem */
  max-width: 1000px;
  line-height: 70px;
  margin-bottom: 0px;
  animation-name: slideInDown;
  animation-duration: 1s;
  animation-timeline: view();
}

.about-section .content p {
  font-family: sans-serif;
  font-weight: 700;
  max-width: 600px;
  margin-top: 0px;
  font-size: 5rem; /* was 1.5rem */
  margin-bottom: 0px;
  animation-name: slideInLeftShort;
  animation-duration: 1s;
  animation-timeline: view();
}

.about-section .content a.button {
  background-color: transparent;
  padding: 16px 36px;
  font-size: 1rem;
  border: 4px solid white;
  border-radius: 6px;
  margin: 38px auto;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
  color: white;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  font-family: sans-serif;
}

.about-section .content a.button:hover {
  color: black;
  background: white;
  transform: translateY(-10px);
}

.about2-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.about2-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timeline: view();
}

.about2-section .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about2-section .content h2 {
  font-size: 2rem; /* was 5rem */
  max-width: 1000px;
  line-height: 70px;
  margin-bottom: 0px;
  animation-name: slideInDown;
  animation-duration: 1s;
  animation-timeline: view();
}

.about2-section .content p {
  font-family: sans-serif;
  font-weight: 700;
  max-width: 600px;
  margin-top: 0px;
  font-size: 5rem; /* was 1.5rem */
  margin-bottom: 0px;
  animation-name: slideInLeftShort;
  animation-duration: 1s;
  animation-timeline: view();
}

.about2-section .content a.button {
  background-color: transparent;
  padding: 16px 36px;
  font-size: 1rem;
  border: 4px solid white;
  border-radius: 6px;
  margin: 38px auto;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
  color: white;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  font-family: sans-serif;
}

.about2-section .content a.button:hover {
  color: black;
  background: white;
  transform: translateY(-10px);
}

.about3-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.about3-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timeline: view();
}

.about3-section .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about3-section .content h2 {
  font-size: 5rem;
  max-width: 1000px;
  line-height: 125px;
  margin-bottom: 0px;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timeline: view();
}

.about3-section .content p {
  font-family: sans-serif;
  font-weight: 700;
  max-width: 600px;
  margin-top: 0px;
  font-size: 1.5rem; /* was 1.5rem */
  margin-bottom: 0px;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timeline: view();
}

.about3-section .content a.button {
  background-color: transparent;
  padding: 16px 36px;
  font-size: 1rem;
  border: 4px solid white;
  border-radius: 6px;
  margin: 38px auto;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
  color: white;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  font-family: sans-serif;
}

.about3-section .content a.button:hover {
  color: black;
  background: white;
  transform: translateY(-10px);
}