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

@keyframes slideInLeftLong {
  from {
    transform: translateX(-350px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  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;
  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 */
}


.active {
  background-color: darkslategray;
  color: black; /* weet niet of dit het doet */
}


.topnav .icon {
  display: none;
}

.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: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .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;
  }
}

body {
  background-color: black;
}

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;

}

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

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

.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: 5px;
  font-family: sans-serif;
  font-weight: 700;
  animation-name: slideInLeft;
  animation-duration: 1s;
}

.hero-section .content p {
  font-size: 1.5rem;
  max-width: 600px;
  line-height: 5px;
  font-family: sans-serif;
  font-weight: 600;
  animation-name: slideInLeft;
  animation-duration: 1.5s;
}

.custom-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 300px; 
  animation-name: slideInLeft;
  animation-duration: 2s;
}

.custom-table td {
  border-bottom: 1px solid white;
  padding: 12px; 
  text-align: left;
  color: white;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table th {
  text-align: left;
  padding: 12px; 
  color: white;
  border-bottom: 1px solid white;
  border-top: none;
}

.button {
  background: white;
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 38px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  color: black;
  text-decoration: none;
}

.button:hover {
  color: white;
  background: grey;
}