body,
html {
  overflow: hidden;
}

body {
  background-color: #c85b32;
}

.background-wrapper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.background {
  position: absolute;
  margin-top: -20%;
  margin-left: -30%;
  width: 100vw;
  height: 100vh;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
  pointer-events: none;
}

.background img {
  height: 75px;
  margin-bottom: 10px;
  -o-object-fit: fill;
     object-fit: fill;
  margin-left: 0;
  -webkit-animation: slideRight 10s infinite linear;
          animation: slideRight 10s infinite linear;
}

.background img:nth-child(2n) {
  margin-left: -300px;
  -webkit-animation: slideLeft 10s infinite linear;
          animation: slideLeft 10s infinite linear;
}

.main-container {
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-container img {
  max-width: 500px;
  width: 80%;
}

@-webkit-keyframes slideLeft {
  50% {
    margin-left: 00%;
  }
  100% {
    margin-left: -300px;
  }
}

@keyframes slideLeft {
  50% {
    margin-left: 00%;
  }
  100% {
    margin-left: -300px;
  }
}

@-webkit-keyframes slideRight {
  50% {
    margin-left: -300px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes slideRight {
  50% {
    margin-left: -300px;
  }
  100% {
    margin-left: 0;
  }
}
/*# sourceMappingURL=main.css.map */