:root {
  --campaign-teal: #37b5aa;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--campaign-teal);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

.campaign-page {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  background: var(--campaign-teal);
}

.campaign-video {
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--campaign-teal);
  object-fit: contain;
  outline: none;
}

.campaign-video:focus-visible {
  outline: 4px solid #ffffff;
  outline-offset: -4px;
}

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