@font-face {
  font-family: 'ArialNarrow';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/arial-narrow-bold.ttf');
}

html {
  background-color: #F74F08;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  height: 100%;
  min-height: 100svh;
}

h1 {
  color: black;
  text-align: center;
  font-family: times, serif;
  font-weight: bold;
  font-size: clamp(3rem, 5vw, 4rem);
  letter-spacing: -0.2rem;
  line-height: 95%;
  max-width: 80rem;
  margin: 0 auto;
}

h2 {
  font-family: "ArialNarrow", sans-serif;
  letter-spacing: -0.02rem;
  text-align: center;
  font-size: 1.2rem;

  a {
    text-decoration: none;
  }
}

a {
  text-decoration: underline;
  text-decoration-thickness: 0.3rem;
  text-underline-offset: 0.3rem;
  text-decoration-skip: none;
  color: inherit;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
