/* Basisstil für Buttons */
button,
input[type="submit"],
input[type="button"],
a.button {
  display: inline-block;
  padding: 0.6em 1.2em;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 2px solid currentColor;
  border-radius: 4px;
  background-color: transparent;
  color: #111;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Hover & Fokus */
button:hover,
input[type="submit"]:hover,
a.button:hover,
button:focus,
input[type="submit"]:focus,
a.button:focus {
  background-color: #111;
  color: #fff;
  outline: none;
}

/* Sekundärstil */
.button.secondary {
  border-color: #aaa;
  color: #555;
}

.button.secondary:hover {
  background-color: #555;
  color: #fff;
}