html,
body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #282826;
  background-image: url(../images/placeholder.jpg);
  background-size: cover;
  background-position: center center;
  backdrop-filter: blur(10px) brightness(30%);
}

.placeholder {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
}

.soon, .feltlore {
  position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
}

.feltlore {
  top: calc(25svh - 25vw);
  height: 8rem;
  opacity: .75;
}

.soon {
  top: calc(75svh + 25vw);

  font-family: Raleway;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 200;
  text-shadow: 0 0 5px black;}

@media (orientation: landscape) {
  .feltlore {
    top: 3.5%;
    text-shadow: none;
    filter: invert(1000%);
  }
  .soon {
    top: 96.25%;
    color: white;
  }
}