.intro {
  height: 100vh;
  background-image: url("/img/intro.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative;
}
.intro .intro-content h1 {
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 15px 0;
  font-weight: normal;
}
@media (min-width: 0) {
  .intro .intro-content h1 {
    font-size: 50px;
  }
}
@media (min-width: 1000px) {
  .intro .intro-content h1 {
    font-size: 70px;
  }
}
.intro .intro-content .intro-slogan {
  text-align: center;
  max-width: 100%;
}
@media (min-width: 0) {
  .intro .intro-content .intro-slogan {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 1000px) {
  .intro .intro-content .intro-slogan {
    font-size: 30px;
    line-height: 45px;
  }
}
.intro .intro-mouse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 45px;
  border: 2px solid #fff;
  border-radius: 15px;
  height: 40px;
  width: 24px;
  opacity: 0.7;
}
.intro .intro-mouse .intro-wheel {
  position: relative;
  border-radius: 1px;
  background: #fff;
  width: 2px;
  height: 6px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
  animation-name: wheel;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-delay: 0s;
  animation-timing-function: linear;
}/*# sourceMappingURL=intro.css.map */