.splash-layer {
  display: flex;
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    15deg,
    hsl(150deg 81% 51%) 0%,
    hsl(162deg 100% 41%) 4%,
    hsl(170deg 100% 36%) 9%,
    hsl(176deg 100% 31%) 15%,
    hsl(182deg 100% 26%) 22%,
    hsl(187deg 86% 24%) 31%,
    hsl(194deg 69% 22%) 41%,
    hsl(203deg 51% 17%) 52%,
    hsl(214deg 39% 11%) 64%,
    hsl(229deg 67% 5%) 77%,
    hsl(229deg 67% 5%) 87%,
    hsl(229deg 67% 5%) 94%,
    hsl(229deg 67% 5%) 99%,
    hsl(229deg 67% 5%) 100%
  );
  text-align: center;
  padding: 20px;
  font-size: 1.5rem;
  opacity: 1;
  transition: opacity 2s ease, transform 3s ease-in-out;
  z-index: 10;
  bottom: 0;
}

.splash-layer-logo {
  width: calc(100% / 2);
  height: 800px;
  object-fit: contain;
  object-position: center;
}

@media screen and (min-width: 1200px) {
  .splash-layer-logo {
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 796px) {
  .splash-layer-logo {
    width: calc(100% / 2);
  }
}

.splash-layer-animate-out {
  opacity: 0;
}