:root {
  color-scheme: dark;
  --page-bg: #000;
  --text: #f6f6f6;
  --muted: #e9e9e9;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--page-bg);
  color: var(--text);
}

.poster {
  position: relative;
  width: min(100%, 2000px);
  margin-inline: auto;
  overflow: hidden;
  background: #000;
}

.poster img {
  display: block;
  width: 100%;
  height: auto;
}

.email-link {
  position: absolute;
  z-index: 1;
  top: 85.1%;
  left: 38%;
  width: 24%;
  height: 3.3%;
  border-radius: 0.25rem;
}

.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;
}

.email-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
