@font-face {
  font-family: 'Brant-Body-Copy';
  font-style: normal;
  src:  url('../fonts/Brant-Body-Copy.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'Brant-Buttons';
  font-style: normal;
  src:  url('../fonts/Brant-Buttons.woff') format('woff');
  font-weight: 400;
}

html,
#landing-page {
  height: 100%;
}

html {
  font-size: 62.5%;
}

#landing-page {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Brant-Body-Copy', sans-serif;
}

#header {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#header .logo {
  display: block;
  width: 100%;
  max-width: 600px;
}

#header .logo img {
  width: 100%;
}

#main {
  padding: 30px;
  background-color: #ff760e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

#button-links {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

#button-links .button {
  display: block;
  padding: 30px;
  font-family: 'Brant-Buttons', sans-serif;
  font-size: 1.6rem;
  background-color: #fff;
  color: #ff760e;
  text-decoration: none;
}

#footer {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3c3c3e;
  text-align: center;
}

#footer p {
  font-family: 'Brant-Body-Copy', sans-serif;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 1rem;
}