/* sollte eigentlich alles splash-page-... heißen, aber damit existierendes CSS nicht kaputtgeht, lassen wir alles wie's ist */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Open Sans", Arial, sans-serif;
}

.landing-page-header {
    text-align: center;
    padding: 1rem;
}

h1 {
    font-size: 2.57142857rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.85714286rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #2a75a9;
    text-decoration: none;
}

a img {
    border: 0;
}

.landing-page-targets {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.landing-page-target {
    padding: 2rem;
    text-align: center;
}

.landing-page-shortlinks {
    padding: 2rem;
    text-align: center;
    font-size: 80%;
    line-height: 1.6;
}

.landing-page-shortlink {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.landing-page-shortlink:not(:first-child)::before {
    content: "|";
    margin: 0 .5em;
}

img {
    max-width: 200px;
    max-height: 200px;
    vertical-align: middle;
}

.landing-page-target-linktext {
    display: block;
    width: 200px;
    margin-top: 0.5rem;
}

.landing-page-target-image-box {
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
}