:root {
  color-scheme: dark;
  --background: #020202;
  --text-muted: #c8c2b8;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text-muted);
  font-family: Arial, Helvetica, sans-serif;
}

.site {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 20px;
}

.poster {
  display: block;
  width: auto;
  max-width: min(88vw, 760px);
  max-height: min(68svh, 820px);
  object-fit: contain;
  box-shadow: 0 18px 70px rgb(0 0 0 / 70%);
}

.email {
  color: rgb(200 194 184 / 82%);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
  text-decoration: none;
}

.email:hover,
.email:focus-visible {
  color: #eee8dc;
}

@media (max-width: 640px) {
  .site {
    gap: 14px;
    padding: 24px 18px;
  }

  .poster {
    width: 100%;
    max-width: 100%;
    max-height: 76svh;
  }
}
