*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  background-color: #050505;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  height: 100dvh;
}

.hero picture,
.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coming-soon {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 767px) {
  .coming-soon {
    bottom: 20px;
    font-size: 12px;
  }
}
