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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #EAC049;
  color: #222222;
  font-family: 'Lexend', Sans-serif;
  font-weight: 300;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px;
}

.site-logo img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 0 5%;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  font-family: 'Crimson Pro', Sans-serif;
  font-size: 85px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: -4px;
  margin: 0 0 2vw 0;
}

.lede {
  font-family: 'Lexend', Sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5em;
  margin: 0 0 4vw 0;
  padding: 0 25%;
}

.cta-wrap {
  margin-top: 20px;
  text-align: center;
}

.cta {
  display: inline-block;
  font-family: 'Lexend', Sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  color: #222222;
  background-color: transparent;
  border: 1px solid #222222;
  border-radius: 100px;
  padding: 16px 55px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta:hover,
.cta:focus {
  color: #EF5500;
  border-color: #EF5500;
}

.site-footer {
  padding: 24px;
}

.copyright {
  display: none;
}

@media (max-width: 1024px) {
  .eyebrow {
    font-size: 65px;
  }
  .lede {
    font-size: 14px;
  }
  .cta {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .eyebrow {
    font-size: 48px;
    line-height: 1em;
  }
  .lede {
    padding: 0;
  }
}
