html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.content{
    background-image: url('Media/SBO-2048x1229.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 110px);
}

.txt {
    text-align: center;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.6);
    text-shadow: 2px 2px 4px rgb(0, 0, 0, 0.5);
    color: #c03d2e;
    padding: 1em 2em;
}

.announcements {
    text-align: center;
    font-size: x-large;
}

.announcementsBold {
    text-align: center;
    font-size: xx-large;
    padding: 10px;
}

.signature {
    text-align: right;
    font-style: italic;
    padding-right: 15%;
}


.heading {
    text-align: center;
    background-color: rgb(56, 24, 183);
    margin-top: 0;
    text-indent: 0%;
    margin: 0;
    padding: 1px;
    color: #FFFFFF;
    display: flex;                  /* ordnet Bild und Text nebeneinander */
    align-items: center;            /* vertikal zentriert */
    justify-content: flex-start;    /* Bild links, Text rechts */
    background-color: #f5f5f5;      /* optionaler Hintergrund */
    border-bottom: 2px solid #ccc;  /* dezente Trennung */
}



/* Responsive Variante: untereinander auf kleinen Bildschirmen */
@media (max-width: 600px) {
    .heading {
    flex-direction: column;
    text-align: center;
    }

    .heading .logo img {
    margin: 0 0 10px 0;
    height: 80px;
    }
}


html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.heading {
  display: flex;
  align-items: center;              /* vertikal zentrieren */
  justify-content: center;          /* gesamten Inhalt horizontal zentrieren */
  background-color: rgb(56, 24, 183); /* dein gewünschtes Blau */
  color: #ffffff;                   /* weiße Schrift */
  padding: 10px 20px;
  border-bottom: 3px solid #2a1580; /* etwas dunklerer Rand für Tiefe */
  text-align: center;
}

/* Logo */
.heading .logo img {
  height: 100px;
  width: auto;
  margin-right: 20px;
}

/* Textblock */
.heading .zweit {
  margin: 0;
  font-size: 1.8
}