a.button1 {
  display: inline-block;
  color: #f5987d;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  user-select: none;
  padding: .5em 2em;
  outline: none;
  border: 2px solid;
  border-radius: 1px;
  transition: 0.2s;
} 

a.button1:hover { background: #FBD6CB; font-color: white; }
a.button1:active { background: #f5987d; font-color: white; }

a.button2 {
  display: inline-block;
  color: #7fcbc8;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  user-select: none;
  padding: .5em 2em;
  outline: none;
  border: 2px solid;
  border-radius: 1px;
  transition: 0.2s;
} 

a.button2:hover { background: #CCEAE9; }
a.button2:active { background: #7fcbc8; }

a.button3 {
  display: inline-block;
  color: white;
  font-weight: 700;
  text-decoration: none;
  user-select: none;
  padding: .5em 1em;
  outline: none;
  border: 2px solid;
  border-radius: 1px;
  transition: 0.2s;
} 
a.button3:hover { background: rgba(255,255,255,.2); }
a.button3:active { background: white; }

a.button3a {
  display: inline-block;
  background: white;
  color: #2e1812;
  font-weight: 700;
  text-decoration: none;
  user-select: none;
  padding: .5em 1em;
  outline: none;
  border: 2px solid;
  border-color: white;
  border-radius: 1px;
  transition: 0.2s;
} 