body, html {
    font-family: 'Segoe UI Variable', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('img/clouds.jpg'); /* Pfad zum Hintergrundbild */
    background-size: cover; /* Bild skaliert, um den gesamten Hintergrund zu füllen */
    background-repeat: no-repeat; /* Bild wiederholt sich nicht */
    background-position: center center; /* Bild ist zentriert */
    background-attachment: fixed; /* Bild bleibt beim Scrollen fixiert */
}
  
.centered-div {
    position: relative;
       padding: 20px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.588);
    margin: 10%;
    margin-top: 10px;
    margin-bottom:15px;
    width:80%;
    background-color: white;
    font-size: 12pt;
    border-radius: 10px;
}
@media only screen and (max-width: 1023px) {
  .centered-div, table {
    font-size: 10pt;
  }
}

.header {
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
    width: 100%;
    background-color: rgba(1, 121, 168, 0.897);
}
.header img {
    margin-left: 100px;
    margin-right: 40px; /* Abstand zwischen Bild und Text */
}
.footer {
    background-color: rgba(1, 121, 168, 0.897); 
    padding:15px;
}

.footer a{
    text-decoration: none;
    color: white;
}

.footer a img{
    filter: brightness(0) invert(1); /* Icon auf Weiß umwandeln */
}

.footer a:hover{
    text-decoration: none;
    color: orange;
}

.footer a:hover img{
    filter: brightness(1) invert(0);
}

.container {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Abstand zwischen den Zeilen */
}

.row {
    display: flex;
    align-items: top; /* Vertikale Ausrichtung */
}

.image {
    width: 300px; /* Breite des Bildes */
    margin-right: 40px; /* Abstand zwischen Bild und Text */
    height: auto;
    object-fit: contain;
}

@media only screen and (max-width: 1023px) {
    .image {
        width: 150px; /* Breite des Bildes */
        margin-right: 20px; /* Abstand zwischen Bild und Text */
        height: auto;
        object-fit: contain;
    }
}

.date-container { 
    text-align: right; 
    font-size: 12px;
}