/* Reset & Basis */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Grundlayout */
body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #222;
    text-align: center;

    background:
        linear-gradient(
            to bottom,
            #6f8fa8 0%,
            #9bb3c5 100%
        ),
        url("images/bg.png");

    background-repeat: no-repeat;
    background-size: cover;

/*

    background-image: url("images/bg.png");
    background-repeat: repeat;
*/

    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: clamp(20px, 4vw, 40px) 10px;
}

.logo {
/*    width: clamp(120px, 20vw, 260px); */
    width: clamp(120px, 20vw, 800px);
    height: auto;
}

.site-title {
    margin: 10px 0 0;
    font-weight: 600;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 0.6px;
}

/*

.site-title {
    text-transform: uppercase;
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
}

*/




/* Hauptbereich */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro {
    margin: 0 0 12px;
    font-weight: 600;
/*
.intro {
    font-weight: 400;
    opacity: 0.8;
}
*/

    font-size: 1rem;
    letter-spacing: 0.4px;
}





/* 0 
.content {
    background: rgba(255, 255, 255, 0.8);
    padding: clamp(20px, 4vw, 40px);
    max-width: 600px;
    margin: 0 20px;
}

ENDE 0 */

/* 1 */

 .content {
    background: transparent;
    padding: clamp(20px, 4vw, 40px);
    max-width: 600px;
    margin: 0 20px;

    border-top: 3px solid rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid rgba(0, 0, 0, 0.25);
}



/* ENDE 1 */

/* 2 
.content {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: clamp(20px, 4vw, 40px);
    max-width: 600px;
    margin: 0 20px;
}

/* ENDE 2 */


.content h1 {
    margin-top: 0;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2rem);
    letter-spacing: 0.5px;
}

.content p {
    font-weight: 300;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.6;
}
/* 1, 2 */
.items {
    list-style-position: outside;
    padding-left: 1.2em;
    margin: 20px auto 0;
    max-width: 320px;
    text-align: left;
}

.items li {
    margin: 6px 0;
    font-weight: 300;
}
/* ende 1 */



/* Footer */
footer {
    padding: 20px 10px;
    font-size: 0.9rem;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Sehr kleine Displays */
@media (max-width: 360px) {
    .logo {
        width: 110px;
    }
}