.simple-button {
  background: inherit;
  border: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  font-size: 1rem;
  padding: 1rem 2rem;
  margin: 0;
  text-align: center;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.primary {
  background: #0069ed;
  color: #ffffff;
}
.primary:hover {
  background: #4396fc;
}

.secondary {
  background: #715AFF;
  color: #ffffff;
}
.secondary:hover {
  background: #8a78ff;
}