/* Hintergrundbild */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('hintergrund1.webp') repeat;
    background-position: top left;
    display: flex;
    justify-content: center;   /* horizontal zentriert */
    align-items: flex-start;   /* starten von oben */
    font-family: Arial, sans-serif;
}

.content {
    width: 1000px;
    background-color: #ffffff;
    padding: 40px;            /* Innenabstand */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px;
    margin: 40px 0;           /* Abstand oben UND unten */
}

/* Überschriften */
h1, h2, h3 {
    color: #a5c6ed;
    margin: 10px 0;
}

/* Normaler Text */
p {
    color: #6c6d74;
    line-height: 1.6;
}

/* Button-Stil */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #a5c6ed;
    color: #2c5e97;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    margin-top: 20px;
}

/* Hover-Effekt */
.btn:hover {
    background-color: #fac71b;
    color: #2c5e97; /* Schriftfarbe bleibt gleich */
}

.btn::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.3s ease;
}

hr.divider {
  border: none;                 /* entfernt den schwarzen Standard */
  border-top: 2px solid #a5c6ed;
  width: 20%;                   /* gewünschte Breite */
  margin: 30px auto;            /* zentriert */
}

hr.divider2 {
  border: none;                 /* entfernt den schwarzen Standard */
  border-top: 2px solid #a5c6ed;
  width: 100%;                   /* gewünschte Breite */
  margin: 30px auto;            /* zentriert */
}

a {
    color: #84a8d3;        /* Standard-Blau wie H1 */
    text-decoration: none;  /* keine Unterstreichung */
    transition: color 0.2s ease; /* sanfte Farbänderung beim Hover */
}

a:hover {
    color: #2c5e97;        /* dunkleres Blau beim Hover */
    text-decoration: none;  /* keine Unterstreichung */
}