html,body{
    height: 100vh;
    width: 100vw;
    overflow:hidden;
    margin: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    background-image: url('samuel-kuemmel-sichtbarkeitsbegleiter.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    color: #fff;
    position:relative;
    padding: 36px; /* Desktop default padding */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -100px;
    background: rgba(0, 0, 0, 0.4); /* Halbtransparente schwarze Überlagerung */
    z-index: -1; /* Stellt das Pseudo-Element hinter den Inhalt */
}

.content {
    text-align: center;
    width: 100%;
}
a,a:visited{
    color: #fff;
    text-decoration: none;
}
h1 {
    margin: 0;
    font-size: 2.5vw;
    text-align:left;
    line-height: 1.2;
    font-weight: 700;
}

h2{
    margin: 0;
    font-size: 2.5vw;
    text-align:left;
    line-height: 1.2;
    font-weight: 400;
}

.slogan {
    font-size: 1.5vw;
    margin-top: 20px;
    text-align:left;
    font-weight: 400;
}

.zielgruppe{
    font-size: 1.5vw;
    margin-top: 20px;
    text-align:left;
    font-weight: 400;
}

#contact-links {
    margin-bottom: 1em;
}

footer {
    font-size: 1.5vw;
    text-align:left;
}

@media (max-width: 768px) {
    body{
        font-size: 18px;
        padding: 24px; /* Tablet padding */
    }
    h1, h2 {
        font-size: 1.5em;
    }
    .slogan,
    .zielgruppe{
        font-size: 1em;
    }
    footer {
        font-size: 1em;
    }
}
@media (max-width: 480px) {
    body{
        padding: 16px; /* Mobile padding */
    }
}
@media (orientation:landscape)
{
    .content,
    footer{
        max-width:33vw;
    }
}
@media (orientation:portrait)
{
    body{
        background-position: -333px center;
    }
    .content{
        max-width: 69%;
    }
}
