* {
  box-sizing: border-box;
}

html, body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: #FAF7F1;
  color: #33445B;
}

h1 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-align: center;
  color: #F1834D;
}

h2 {
  font-size: 30px;
  font-weight: bold;
  color: #F1834D;
}

h3 {
  font-size: 20px;
  font-weight: bold;
}

a {
  color: #33445B;
}

strong {
  font-weight: bold;
}

a.button, button {
  background-color: #F1834D;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  color: white;
  min-width: 200px;
  padding: 0px 32px;
  height: 64px;
  line-height: 64px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}
a.button.secondary, button.secondary {
  background: #33445B;
}
a.button[disabled=disabled], button[disabled=disabled] {
  opacity: 0.4;
  pointer-events: none;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

h1 sup {
  font-size: 20px;
}

h2 sup {
  font-size: 20px;
}