@font-face {
  font-family: "Exo 2";
  src: url("fonts/exo2-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("fonts/exo2-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
}

body {
  color: #080f19;
  font-family: "Exo 2", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 18px clamp(24px, 5vw, 76px);
  background: #fff;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.wordmark strong {
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  font-weight: 400;
  letter-spacing: .24em;
  line-height: 1;
}

.wordmark small {
  margin-top: 7px;
  font-size: clamp(.43rem, .65vw, .57rem);
  font-weight: 300;
  letter-spacing: .11em;
  line-height: 1.2;
  white-space: nowrap;
}

main {
  width: 100%;
}

.hero-banner {
  display: block;
  width: min(1536px, 100%);
  aspect-ratio: 3 / 2;
  margin: 0 auto;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 600px) {
  .topbar {
    min-height: 76px;
    justify-content: center;
    padding-inline: 14px;
  }

  .wordmark strong {
    font-size: 1.55rem;
  }

  .wordmark small {
    font-size: .4rem;
    letter-spacing: .07em;
  }
}
