html {
  height: 100%;
}

body {
  /* padding: 1rem 0; */
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

body > p {
  padding: 0 1rem;
  margin: 0 auto 0.5rem;
  color: #666;
}

body > p b {
  color: #000;
}

body > p a {
  font-weight: 700;
  color: #e77002;
}

.choices {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.choices.one li {
  width: 100%;
}

.choices.two li {
  width: calc(25% - 0.5rem);
}

.choices.three li {
  width: calc((100% - 1rem) / 3);
}

.choices.many li {
  width: calc((100% - 2.5rem) / 6);
}

.choices li:not(:last-of-type) {
  margin-right: 0.1rem;
}

.choices a {
  display: flex;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.75rem 0.2rem 0.6rem;
  background-color: #ffa500;
  background-image: linear-gradient(0deg, #e77002, #f19407, #f7b015);
  border: 2.5px solid #ffdc88;
  border-radius: 1rem;
  color: #fff !important;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 5px -5px rgba(0, 0, 0, 0.3);
  position: relative;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

.choices.many a {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.choices.many li:nth-of-type(n+5) a {
  margin-bottom: 0.5rem;
}

@media (max-width: 770px) {
  .choices {
    width: calc(100% - 1rem);
    margin: 0 auto;
  }
  .choices.two li {
    width: calc(50% - 0.5rem);
  }
  .choices.many li {
    width: calc((100% - 0.4rem) / 4);
    margin-bottom: 0.25rem;
    margin-right: 0.1rem;
  }
  .choices.many li a {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .choices.many li:nth-of-type(4n) {
    margin-right: 0;
  }
}/*# sourceMappingURL=planflow.css.map */