
main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 1.6;
}

/* Voor koppen */
 h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

script {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #000;
    color: white;
    flex-direction: column;
    font-family: 'Halesworth', serif;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

header {
    justify-content: center;
}

main {
    flex-direction: column;
}

footer {
    height: 10vh;
}

h1 {
    color: black;
    text-shadow:
      -1px -1px 0 white,
       1px -1px 0 white,
      -1px  1px 0 white,
       1px  1px 0 white;
    -webkit-text-stroke: 1px white;
    font-size: 56px;
}

.container {
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.left, .right {
    flex-direction: column;
    width: 45vw;
}

.left {
    background-image: url(media/background.png);
    background-repeat: no-repeat;
    background-size: 55%;
    background-position: 80% 50%;
}

.right {
    justify-content: center;
    align-items: center;
}

video {
    max-width: 50%;
}

.map-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-locations{
    position: absolute;
    height: 700px;
    width: 700px;
}

.locations {
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nl-map {
    justify-content: center;
    align-items: center;
    height: 700px;
    width: 700px;
}

.nl-map img {
    width: 70%;
    height: 70%;
}

tbody {
    flex-direction: column;
}

.form {
    flex-direction: column;
}

.form h2 {
    font-size: 36px;
    justify-content: center;
    align-items: center;
}

td {
    flex-direction: column;
    font-size: 24px;
}

.logo-defile {
    width: 45%;
}

@media only screen and (max-width: 600px) {
    * {
      justify-content: center;
      overflow: none;
    }

      .container {
      flex-direction: column;
    }

    .left, .right {
      width: 100vw;
    }

    .nl-map {
        height: 400px;
        width: 400px;
    }

    .map-locations {
        height: 100vw;
        width: 100vw;
    }
}

.floating-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.floating-button.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.floating-button:hover {
    background-color: white;
    color: black;
}
