* {
  box-sizing: border-box;
}

h1 {
  margin: 0 auto 0 auto;
  font-size: 8rem;
  text-align: center;
  font-weight: normal;
  max-width: 800px;
}

h2 {
  margin: 0 auto 0 auto;
  font-size: 4rem;
  text-align: center;
  font-weight: normal;
  max-width: 800px;
}

h4 {
  margin: 0 auto 0 auto;
  font-size: 1.5rem;
  text-align: center;
  font-weight: normal;
  max-width: 800px;
}

p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 800px;
}

a {
  color: black;
}

.page {
  padding: 64px 32px;
}

.card {
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.spacer {
  height: 64px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 320px;
  background-color: #fcab10;
  border-radius: 28px;
  border: none;
  margin: 0 auto;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.ctaRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  grid-gap: 32px;
  grid-row-gap: 32px;
  margin: 0 auto;
  justify-content: center;
}

.storeBadge {
  height: 64px;
}

@media (max-width: 480px) {
  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 3rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  .page {
    padding: 32px 16px;
  }

  .spacer {
    height: 32px;
  }

  .storeBadge {
    height: 48px;
  }
}
