body {
  margin: 0 10%; /* oben/unten = 0, rechts/links = 10% */
  box-sizing: border-box;
}

.rnbutton-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.rnbutton {
  background: linear-gradient(to right, rgb(20, 132, 104), rgb(36, 105, 168));
  color: white;
  text-align: center;
  padding: 12px; /* gleichmäßig rundherum */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Visby', sans-serif;
  font-size: 14px; /* kleinere Schrift */
  font-weight:800;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.3s ease, color 0.3s ease;
}

.rnbutton:hover {
  background: lightgray;
  color: white;
  text-decoration: none;
}

.intro-text {
  font-family: 'Visby', sans-serif;
  font-weight: 800;
  font-size: 2em;       /* Oder eine andere passende Größe */
  color: #2469A8;
  text-align: left;      /* 👉 Links ausgerichtet */
}
a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}