.button {
  color: white;
  padding: 0 40px;
  font-weight: 600;
  background-color: var(--primary-color);
  line-height: 52px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.button:hover {
  opacity: .85;
}

.button.inverse {
  color: var(--primary-color);
  background-color: white;
}