/* Buttons */
a.primary_button {
  color: white;
  background-color: #0076be;
  padding: 10px 25px;
  border-radius: 50px;
  display: block;
  width: fit-content;
  margin-top: 25px;
  font-size: 15px;
}

a.primary_button:hover {
  background-color: #fa9035;
  color: white;
  outline: none;
}

a.primary_button:active {
  background-color: #005c96;
}

a.secondary_button {
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 15px;
  color: #333;
  border: none;
  outline: 2px solid #333;
  outline-offset: -2px;
  background: none;
}

a.secondary_button:hover {
  background-color: #000;
  color: white;
  outline: none;
}

a.secondary_button:active {
  background-color: #333;
}

/* White */
a.white_button {
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 15px;
  color: #fff;
  border: none;
  outline: 2px solid #fff;
  outline-offset: -2px;
  background: none;
}

a.white_button:hover {
  background-color: #fff;
  color: #000;
  outline: none;
}

a.white_button:active {
  background-color: #eee;
  color: #333;
}

/* Black */
a.black_button {
  color: white;
  background-color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  display: block;
  width: fit-content;
  margin-top: 25px;
  font-size: 15px;
}

a.black_button:hover {
  background-color: #0076be;
}

a.black_button:active {
  background-color: #005c96;
}
