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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.bg-layer-1 {
  z-index: 0;
}

.bg-layer-2 {
  z-index: 1;
  opacity: 0;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
}

h1 {
  font-family:
    "Rock Salt",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 3rem;
  color: #eee;
  text-shadow: 0.2rem 0.2rem 0.8rem rgba(0, 0, 0, 0.5);
}

footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0px;
  text-align: center;
}
footer img {
  width: 5vh;
  height: 5vh;
  margin: 1.5rem 1.5rem 1rem 1rem;
}

@media (min-width: 992px) {
  /* Desktop */

  .content {
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-size: 4vw;
  }

  footer {
    width: auto;
    text-align: left;
    border-top-right-radius: 1.5rem;
  }
}
