* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #020914;
}

body {
  overflow: hidden;
}

.coming-soon {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #020914;
}

.coming-soon::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("./assets/coming-soon-reference.png") center / cover no-repeat;
  filter: blur(18px) brightness(0.58) saturate(1.05);
  transform: scale(1.04);
}

.reference-art,
.mobile-reference-art {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.reference-art {
  object-fit: contain;
}

.mobile-reference-art {
  display: none;
  object-fit: cover;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (orientation: portrait) {
  .coming-soon::before {
    background: url("./assets/coming-soon-mobile.png") center / cover no-repeat;
    filter: blur(14px) brightness(0.62) saturate(1.05);
    transform: scale(1.04);
  }

  .reference-art {
    display: none;
  }

  .mobile-reference-art {
    display: block;
  }
}
