.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  padding: 13px 20px;
  color: var(--c-grey);
  text-align: center;
  font-family: var(--ff-primary);
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--c-green);
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background-color: var(--c-hover-green);
  text-decoration: none;
}

@media (hover: hover) {
  .button:hover,
  button:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover {
    background-color: var(--c-hover-green);
    text-decoration: none;
  }
}