:root {
  color-scheme: dark;
  background: #050505;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

.image-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  height: 100dvh;
  place-items: center;
  isolation: isolate;
}

.placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  padding: 24px;
  color: #8d8d8d;
  font-size: clamp(14px, 2vw, 18px);
  text-align: center;
  place-items: center;
}

.placeholder strong {
  color: #d8d8d8;
  font-weight: 600;
}

.site-image {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: #050505;
  user-select: none;
  -webkit-user-drag: none;
}
