* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  color: #000;
  overflow: hidden;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    "Arial Narrow",
    sans-serif;
}

/* ================================
   BLACK WORDMARK AREA
================================ */

.wordmark {
  width: 100%;
  height: 48vh;
  min-height: 300px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
  overflow: hidden;
}

.wordmark h1 {
  margin: 0;
  padding: 0;

  width: max-content;
  white-space: nowrap;

  color: #fff;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: 24vw;
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.08em;

  transform: scaleX(0.48) scaleY(1.45);
  transform-origin: center center;
}

/* ================================
   INFORMATION
================================ */

.information {
  width: 100%;
  height: 52vh;

  padding: 12px 20px 20px;

  display: flex;
  align-items: flex-start;
}

.information p {
  margin: 0;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(32px, 4.4vw, 76px);
  font-weight: 900;

  line-height: 1.38;
  letter-spacing: -0.015em;

  text-transform: uppercase;
}

.information a {
  color: #1239d8;

  text-decoration-line: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;

  overflow-wrap: anywhere;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 700px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .wordmark {
    height: 42vh;
    min-height: 0;
  }

  .wordmark h1 {
    font-size: 27vw;
    letter-spacing: -0.09em;

    transform: scaleX(0.40) scaleY(1.5);
  }

  .information {
    height: 58vh;
    padding: 10px 14px 14px;
  }

  .information p {
    font-size: 5.8vw;
    line-height: 1.25;
    letter-spacing: -0.015em;
  }

  .information a {
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
  }
}

/* ================================
   VERY SMALL PHONES
================================ */

@media (max-width: 400px) {
  .wordmark {
    height: 40vh;
  }

  .wordmark h1 {
    font-size: 28vw;
    transform: scaleX(0.37) scaleY(1.5);
  }

  .information {
    height: 60vh;
    padding: 8px 12px 12px;
  }

  .information p {
    font-size: 5.5vw;
    line-height: 1.22;
  }
}

/* ================================
   LANDSCAPE PHONES
================================ */

@media (max-width: 900px) and (orientation: landscape) {
  .wordmark {
    height: 45vh;
  }

  .wordmark h1 {
    font-size: 20vw;
    transform: scaleX(0.43) scaleY(1.4);
  }

  .information {
    height: 55vh;
  }

  .information p {
    font-size: 3.6vw;
    line-height: 1.2;
  }
}
