@font-face {
  font-family: 'BF Headline Narrow Bold';
  src: url('./fonts/BF_HEADLINE_NARROW-BOLD.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'BF Mono Book';
  src: url('./fonts/BF_MONO_BOOK.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BF Sub Headline Bold';
  src: url('./fonts/BF_SUB_HEADLINE_BOLD.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'BF Text Regular';
  src: url('./fonts/BF_TEXT_REGULAR.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'BF Text Regular', Arial, sans-serif;
  background: #000;
  color: #fff;
}

video {
  width: 100dvw;
  height: 100dvh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

h1, h2, h3 {
  font-family: 'BF Headline Narrow Bold', 'BF Sub Headline Bold', Arial, sans-serif;
}

code, pre {
  font-family: 'BF Mono Book', monospace;
}

.subtitle {
  font-family: 'BF Sub Headline Bold', Arial, sans-serif;
}

.text {
  font-family: 'BF Text Regular', Arial, sans-serif;
}

.content {
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100dvw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1;

  .title {
    font-family: 'BF Headline Narrow Bold', 'BF Sub Headline Bold', Arial, sans-serif;
    font-size: 80px;
    line-height: 68px;
    font-weight: 700;
  }

  .description {
    max-width: 900px;
    padding: 0 32px;
    text-align: center;
    font-family: 'BF Text Regular', Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5rem;
  }

  .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px 12px;
    font-family: 'BF Text Regular', Arial, sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    background-color: rgb(255, 60, 0);
    border-radius: 2px;
    transition: transform .125s cubic-bezier(.23, 1, .32, 1);
  }

  .button:hover {
    color: white;
    transform: scale(0.95);
  }
}