.button {
  padding: 1rem 2rem;
  border: none;
  font-size: 1.25rem;
  border-radius: 1rem;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--primary-color);
}

.gradient-button {
  padding: 1rem 2rem;
  border: none;
  font-size: 1.25rem;
  border-radius: 100px;
  color: white;
  background: linear-gradient(
    86deg,
    var(--a-gradient-a) 0%,
    var(--a-gradient-b) 95.38%
  );
  white-space: nowrap;
}

.gradient-button--secondary {
  background: linear-gradient(
    86deg,
    var(--b-gradient-a) 0%,
    var(--b-gradient-b) 95.38%
  );
}
