body {
  background-color: #060606;
  margin: 0;
}

.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-image: url("../img/heritash__bg_mobile_02.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (min-width: 800px) {
  .container {
    background-image: url("../img/heritash__bg_desktop_02.jpg");
  }
}

.logo {
  margin: 0;
  position: absolute;
  top: 15%;
  left: 50%;
  width: 115px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 240px;
  height: auto;
  -webkit-animation: fadein 2s;
          animation: fadein 2s;
}

@media screen and (min-width: 800px) {
  .logo {
    width: 190px;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=style2.css.map */