:root {
  color-scheme: light;
  background: white;
  color: #111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 222, 150, 0.18), transparent 30%),
    #fff;
}

main {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.portrait {
  display: block;
  width: auto;
  max-width: 100vw;
  height: 95vh;
  max-height: 95vh;
  object-fit: contain;
  margin: 0 auto;
  filter: saturate(1.05) contrast(1.03);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-composite: intersect;
}

.label {
  position: fixed;
  left: 50%;
  bottom: clamp(24px, 5vh, 56px);
  transform: translateX(-50%);
  z-index: 2;
  padding: 8px 18px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: clamp(18px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 700px) {
  .label {
    bottom: clamp(18px, 4vh, 36px);
    font-size: clamp(18px, 8vw, 34px);
  }
}
