.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 8px;
  width: 100%;
}

.button:hover {
}

a:hover {
  color: white;
}

.button-blue {
  background-color: #2388e7;
}
.button-blue:hover {
  background-color: #1670c4;
}

.button-red {
  background-color: #05bd86;
}
.button-red:hover {
  background-color: #08996d;
}

.button-grey {
  background-color: #b1b1b1;
}

.button-grey:hover {
  background-color: #969696;
}
