/*-----------------------
    Grundeinstellungen
------------------------*/

h1, h2, h3, p {
    font-family: "Arial";
    color: #002C47;
}

h1 {
    text-align: center;
    /*font-size:50pt;*/
    font-size: 4vw;
}


.ueberschrift { 
    display: flex; 
    align-items: center; /* Vertikale Zentrierung */ 
    position: relative;
    z-index: 1;
} 

.logo { margin-right: 10vw; /* Abstand zwischen Logo und Text */ }

body {
    color: #002C47;
    background-color:#CDF6FA;
    /*#C3EEF3 #659BB3 #CDF6FA #C6F2F7 */
}


/*-----------------------
        Impressum
------------------------*/

.impressum h3, .impressum h4, .impressum p, .impressum a {
    font-family: 'Courier New';
    line-height: 0.5;
    color: #BCFAFB;
    text-indent: 1.5vw;
}

.impressum p {
    font-size: 0.8vw;
}

.impressum h3 {
    font-size: 1.6vw;
   
}

.impressum h4 {
    font-size: 1.1vw;
}

.impressum-box {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4);
    width: 15%;
    margin: 20px;
    padding: 5px;
    background-color: #002A4A;
    position: relative;
    top: -150px; /* Just an example, adjust as needed */
    z-index: 2;
}

