@font-face {
  font-family: 'Aeonikfono';
  src: url('fonts/AeonikFono-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonikfono';
  src: url('fonts/AeonikFono-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --light: #f7f7f4;
  --offwhite: #f4f3e8;
  --semi: #2b0f0b;
  --dark: #140705;
  --brand: #ff391b;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--light);
  color: var(--semi);
  font-family: Aeonikfono, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
}

h1 {
  letter-spacing: -.02em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 28ch;
}

h2 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 125%;
  text-transform: uppercase;
}

p {
  opacity: .8;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 160%;
}

a {
  color: var(--brand);
  text-decoration: underline dotted;
}

a:hover {
  color: var(--semi);
  text-decoration-color: var(--brand);
  text-decoration-style: solid;
  text-decoration-thickness: 3px;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
}

li {
  opacity: .8;
  font-size: 1rem;
  line-height: 160%;
  list-style-type: square;
  margin-left: 1.25rem;
}

.container {
  max-width: 35rem;
  margin: 0 auto;
}

.content {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.block {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: .5rem;
  width: 100%;
}

.logo {
  width: 8rem;
  margin-bottom: 1rem;
}

.hero {
  margin: 20px 0;
  max-width: 100%;
  height: auto;
}

.apply {
  width: 100%;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  background-color: var(--semi);
  color: var(--offwhite);
  line-height: 100%;
  text-align: center;
  text-decoration: none;
}

.apply:hover {
  background-color: var(--brand);
  color: var(--offwhite);
}

.ctas {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.public {
  padding: 12px 24px;
  border-radius: 0.5rem;
  border: 1px solid #2b0f0b12;
  background: #fff;
}

.footnote {
  opacity: .6;
  text-align: center;
  width: 100%;
  font-size: .875rem;
}

.footnote.left {
  text-align: left;
}

.footnote a {
  color: inherit;
  text-decoration: none;
}

.mb0 {
  margin-bottom: 0;
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 1.5rem;
    line-height: 120%;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .content {
    padding-top: 3rem;
  }

  .logo {
    width: 7rem;
    margin-bottom: 1rem;
  }

  .ctas {
    flex-flow: column;
  }
}
