@font-face {
    font-family: 'Raleway';
    src: local('Raleway');
    font-style: normal;
    font-weight: 400;
}

.kontakt {
    white-space: nowrap;
    hyphens: none;
    word-break: keep-all;
    margin-bottom: 20px;  /* Abstand zum Button (anpassen: 15px, 2em, etc.) */
    line-height: 1.5;
}

p:last-child {  /* Der Button-Paragraph */
    margin-top: 0;
}

html, body {
    height: 100vh;  /* Volle Viewport-Höhe */
    margin: 0;
    display: flex;
    justify-content: center;  /* Horizontal zentriert */
    align-items: center;      /* Vertikal zentriert */
    flex-direction: column;   /* Content stapelt sich vertikal */
}

body {
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #0f4e66;
    text-align: center;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
	   max-width: 90%;  /* Verhindert Überlauf auf Mobile */
	   word-wrap: break-word;  /* Nur bei wirklich langen Wörtern */
    overflow-wrap: anywhere;
}

.btn-primary {
    background-color: #0f4e66;
    padding: 10px 15px;
    border-radius: 3px;
    margin: 0 10px;
    color: #fff;
}

a {
    color: #0f4e66;
    text-decoration: none;
}

h2 {
    font-family: Raleway;
    font-weight: 400;
    font-size: 2em;
    color: #0f4e66;
    margin: 0 0 10px;
    padding-bottom: 8px;
}

hr {
    width: 60%;
    border: none;
    border-bottom: 1px solid #C7C7C7;
    margin: 20px auto;  /* Zentriert auf Desktop */
}

/* Mobile: HR anpassen und zentrieren */
@media (max-width: 768px) {
    hr {
        width: 90%;  /* Breiter auf Mobile */
        margin: 20px auto;  /* Zentriert */
    }
}