#target {
  background: #000;
}
#target:not(#target.loaded) img {
  display: none;
}
#target:not(#target.loaded) .loading {
  background: #fff;
  border: 1px solid #000;
}
#target:not(#target.loaded) .loading .loadingBar {
  width: 0;
  height: 10px;
  background: #000;
}
#target.loaded {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
#target.loaded .loading {
  display: none;
}
#target.loaded img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-width: unset;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#target.loaded img.hidden {
  display: none;
}
#target.loaded h1, #target.loaded p {
  z-index: 1;
  max-width: 70ch;
  color: #191919;
  font-family: sans-serif;
  text-align: center;
  border: unset;
}