html, body {
  margin: 0px;
  padding: 0px;
  background: #F0EDE6;
  font-family: 'FiraGO', sans-serif;
  line-height: 1.7;
}
body {
  max-width: 88%;
  margin: auto;
  color: #0A5D48;
}
.master {
  max-width: 96vw;
  max-width: 800px;
  margin: auto;
}
.logo {
  margin: auto;
  max-width: 80%;
  max-width: 400px;
  text-align: center;
}
.logo img {
  width: 100%;
  margin: 48px auto;
}
.pool {
  max-width: 96vw;
  max-width: 800px;
  margin: 48px auto;
  padding: 22px;
  text-align: center;
  background: white;
  border-radius: 16px;
}
.footer {
  text-align: center;
}
h1 {
  font-size: 2.4em;
  font-weight: 800;
  text-align: center;
}
h2 {
  font-size: 1.8em;
}
h3 {
  font-size: 1.5em;
}
hr {
  border: none;
  height: 3px;
  background: #F58B33;
}
p {
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.5;
  color: #000000;
}
ul {
  list-style: none;
  font-size: 1.2em;
  padding: 0;
  margin: 0;
  color: #000000;
}
li {
  margin-bottom: 10px;
  padding-left: 40px;
  position: relative;
}
li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-image: url('images/bullet.svg');
  background-size: cover;
}
.selectable {
  text-align: center;
  border: 1px solid orange;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.not-selected {
  background-color: white;
  color: black;
}
.selected {
  background-color: orange;
  color: white;
}
@media (max-width: 800px) {
.selectable {
  display: block;
  margin: 8px 0px;
  padding: 16px 16px;
}
}
@media (min-width: 801px) {
.selectable {
  display: inline-block;
  margin: 6px 4px;
  padding: 16px 32px;
}
}
