/* Make anchor look like a button */
a.button1,
a.button2 {
  font-family: system-ui;;
  font-size: 600;
  font-weight: inherit;
  letter-spacing: inherit;

  text-decoration: none;   /* remove underline */
  color: inherit;          /* keep button text color */
  display: inline-flex;    /* behave like a button */
  align-items: center;
  justify-content: center;

}

a.button1:focus-visible,
a.button2:focus-visible {
  outline: 2px solid #00aaff;
  outline-offset: 3px;
}
