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

/* Weißer Contentbereich zentriert */
.content {
    width: 800px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px;
}

/* Ü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 */
}

