.landing {
  height: 100vh;
  width: 100vw;
  background-image: url("https://news.cnrs.fr/sites/default/files/styles/visuel_principal/public/assets/images/main_image_star-forming_region_carina_nircam_final-5mb_72dpi.jpg");
  background-position: center;
  background-size: cover;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  color: rgb(239, 248, 232);
  text-shadow: 0 0 50px green;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.landing__text-box {
  position: absolute;
  top: 18vh;
  height: 30vh;
  width: 40vw;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.landing__title {
  color: rgb(239, 248, 232);
  font-size: 20vh;
  margin-top: -21vh;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.349);
}
.landing__authors {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.349);
  width: 27vw;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  font-size: 3.5vh;
  font-weight: 500;
  text-align: center;
  margin-top: -19vh;
  margin-bottom: 19vh;
  -webkit-text-stroke-width: 0.3px;
}
.landing__start-button {
  text-decoration: none;
  z-index: 1;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  margin: 2vh;
  padding: 2vh;
  border: none;
  background-color: antiquewhite;
  color: rgb(143, 73, 64);
  font-size: 0.7em;
  box-shadow: 0 0 200px antiquewhite;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing__start-button:hover {
  box-shadow: 0 0 50px red;
  text-shadow: 0 0 20px 20px rgb(159, 131, 238);
  color: rgb(80, 11, 11);
}
.landing__demos {
  height: 50vh;
  width: 30vw;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.landing__ship {
  height: 200px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing__definition {
  position: absolute;
  color: antiquewhite;
  bottom: 20px;
  font-size: 2em;
  cursor: pointer;
  opacity: 0.6;
  -webkit-text-stroke-width: 0px;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotating-2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes rotating-3 {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(450deg);
  }
}
@keyframes rotating-4 {
  from {
    transform: rotate(450deg);
  }
  to {
    transform: rotate(450deg);
  }
}
.rotating-1 {
  margin-bottom: 5vh;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid red;
  animation: rotating 4s linear infinite;
}

.rotating-2 {
  margin-bottom: 5vh;
  position: absolute;
  transform: rotate(45deg);
  width: 50px;
  height: 50px;
  border: 1px solid red;
  animation: rotating-2 4s linear infinite;
}

.rotating-3 {
  margin-bottom: 5vh;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid red;
}

.rotating-4 {
  margin-bottom: 5vh;
  position: absolute;
  transform: rotate(45deg);
  width: 50px;
  height: 50px;
  border: 1px solid red;
}/*# sourceMappingURL=style.css.map */