    /* Ganze Seite fix auf 1200x675 */
    html, body {
      margin: 0;
      padding: 0;
      width: 1200px;
      height: 675px;
      overflow: hidden; /* verhindert Scrollbalken */
      font-family: sans-serif;
	  background-color: #052975;
    }

    h1 {
      margin: 10px 0;
      text-align: center;
	  color: #FFFFFF;
	  font-size:12px;
    }

    .image-wrapper {
      width: 100%;
      height: calc(100% - 48px); /* Platz fürs h1 abziehen */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-wrapper img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
    }