@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/montserrat-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/montserrat-latin-500-normal.woff2") format("woff2");
}

:root {
  --bg: #ffffff;
  --fg: #1a1d23;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
}

body {
  min-height: 100dvh;
  font-family: Montserrat, Calibri, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 100dvh;
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lockup {
  width: min(100%, 42rem);
  height: auto;
  margin: 0 0 3rem;
}

.copy {
  width: min(100%, 28rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.lead,
.title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
}

.play {
  display: block;
  width: min(100%, 36rem);
  margin: 0 0 2rem;
  line-height: 0;
  text-decoration: none;
}

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

.play:hover {
  text-decoration: none;
}

.play:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 4px;
}

p {
  margin: 0;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

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