:root {
  --ff-main: "Noto Sans", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100dvh;
  font-family: var(--ff-main);
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  background-color: rgb(230, 230, 230);
  margin: 0;
}

/* - main - */
main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* -- top container -- */
.top-container {
  width: 100%;
  background-image: url(../assets/background_top_blauw.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  padding: 4rem;
  margin: 0;
}

/* --- text in top-container--- */
.top-text-container {
  width: 100%;
  max-width: 500px;
  margin-right: 3rem;
  text-align: justify;
  text-justify: inter-word;
}

.title {
  font-family: var(--ff-main);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.sub-title {
  font-family: var(--ff-main);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

/* ---hover gebied --- */
.hover-area {
  position: relative;
  width: 1400px;
  height: 150px;
  overflow: hidden;
  cursor: pointer;
}

/* --- animatie-container --- */
.animation {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 2rem 4rem;
  overflow: hidden;
}

.track {
  top: 10;
  width: 1400px;
  height: 100px;
  opacity: 50%;
}

.slide {
  position: absolute;
  top: 10;
  width: 1200px;
  height: auto;
  animation: none;
  transition: transform 0.5s ease-in-out;
  transform: translateX(85%);
  z-index: 100000;
}

/* hover start animatie */
.hover-area:hover .slide {
  animation: none;  
}

.hover-area:hover .slide:first-child {
  animation: slide-out-in 11s infinite;
}

@keyframes slide-out-in {
  0% {
    transform: translateX(85%);
  }

  80% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

.lights-container {
  width: 100%;
  height: auto;
}

.lights_img {
  width: 1300px;
  height: auto;
  padding-left: 8rem;
}

.main-text-container {
  width: 100%;
  height: auto;
  padding: 2rem 15rem;
  color: rgb(18, 0, 100);
}

.main-text {
  font-family: var(--ff-main);
  font-size: 18px;
  font-weight: 400;
}