/* Google Fonts einbinden */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Allgemeine Schriftdefinition */
body {
    background-color: d5c7c5;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #166884; /* Dunkelgrau für gute Lesbarkeit */
    
    margin: 0;
    padding: 0;
}

/* Überschriften */
h1 {
    font-family: 'Script', cursive;
    font-size: 2.5rem;
    color: #166884; /* Etwas dunkler für Kontrast */
    margin-bottom: 0px;
    }
    h2 {
    font-family: 'Script', cursive;
    font-size: 1,8rem;
    color: #166884; /* Etwas dunkler für Kontrast */
    margin-bottom: 0px;


}

h3 {
    font-family: 'Poppins', cursive;
    font-size: 1.5rem;
    color: #166884; /* Etwas dunkler für Kontrast */
    margin-bottom: -10px;


}

 h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #166884; /* Etwas dunkler für Kontrast */
    margin-bottom: 10px;
}

h1 { font-size: 7.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.3rem; bold; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Absatz-Text */
p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 15px;
}

/* Bildgröße */
img {
    width: 300pt;
}

a:link { color : #166884;}
a:visited { color : #166884;}
a:hover { color : #166884;}
