body {
    background-color: #f8f8f8;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 1000;
    overflow: scroll;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
  body h1 {
    display:none;
  }

.header {
    position: fixed;
    top: 10px;
    left: 10px;
    opacity: 0.85;
    z-index: 100;
}

.header a {
    color: rgb(239, 25, 25);
    font-size: 20px;
    text-decoration: none;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.content {
    width: 100%;
    max-width: 1200px;
    /* Maximale Breite der Content-Box */
    text-align: center;
}

.image {
    padding-top: 20px;
    width: 100%;
    /* Bild nimmt 90% der Breite des Containers ein */
    height: auto;
    margin-bottom: 5px;
}

.text {
    font-family: 'Open Sans', sans-serif;
    padding-top: 10px;
    padding-bottom: 0px;
    text-align: left;
    font-weight: 100;
    width: 50%;
    margin-left: 10%;

    font-size: 14px;
    margin-bottom: -6px
}

.subtext {
    font-family: 'Open Sans', sans-serif;
    padding-top: 0px;
    padding-bottom: 10px;
    text-align: left;
    font-weight: 100;
    width: 50%;
    margin-left: 10%;

    font-size: 12px;

}