* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-image: url("images/20190812_124535-2.jpg");
  background-repeat: repeat;
  text-align: center;
  -webkit-animation: marquee 30s infinite linear;
          animation: marquee 30s infinite linear;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

@media (max-width: 550px) {
  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 30px;
  }
}

.hero img {
  width: 100%;
}

@-webkit-keyframes marquee {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 100%;
  }
}

@keyframes marquee {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 100%;
  }
}
/*# sourceMappingURL=main.css.map */