body {
  --brand-purple: #6c68c8;
  font-family: Arial, Helvetica, sans-serif;
  margin: 20px;
}

h1 {
  font-weight: normal;
  font-size: xx-large;
  margin: 24px 0 16px;
  color: #6761d1;
}

h2 {
  font-weight: normal;
  font-size: x-large;
  margin: 24px 0 16px;
  color: #6761d1;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0 0;
}

.button {
  min-width: 80px;
  min-height: 36px;
  box-sizing: border-box;
  padding: 8px 20px;
  text-align: center;
  text-decoration-line: none;
  border-radius: 10px;
  font-size: large;
  background-color: var(--brand-purple);
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
}
