.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10%;
  margin-right: 10%;
  height: 100vh;
}

.hero__header {
  position: relative;
  width: max-content;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: #e6debc;
}

.hero__text {
  font-family: "IBM Plex Sans";
  color: white;
  text-align: center;
  max-width: 600px;
  margin: 30px;
}


.logo {
  min-width: 300px;
  width: 55%;
  padding-bottom: 2rem;
  filter: drop-shadow(0 0 0.75rem rgb(237, 179, 52));
}


iframe {
  opacity: 0.2;
  width: 100vw;
  height: 110%;
  background-color: #45372e;
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 110%;
}

@media (max-width: 500px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .presentation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero__header {
    font-size: 1.8rem;
  }
}

@media (max-width: 700px) {
  .hero__video {
    margin-top: 50px;
  }
  .logo {
    min-width: 280px;
  }
}

@media (min-aspect-ratio: 16/9) {
  .video {
    width: 100%;
    height: auto;
  }
}

@media (min-aspect-ratio: 16/9) {
  .video {
    width: auto;
    height: 100%;
  }
}


.presentation {
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: scale-in 2s;
}

