The buttons

Compared to everything we've looked at so far, the buttons are very straight forward!

.button {
  display: inline flex;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--font-size-md);
  text-decoration: none;
  background-color: var(--background-accent-main);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-1);
}

.button:hover,
.button:focus-visible {
  background: var(--background-accent-light);
  color: var(--text-high-contrast);
}