@charset "utf-8";
main {
    padding-bottom: 5rem;
}
/*großes Hintergrundbild*/
.background-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -17;
    filter: brightness(0.5); 
}

/*Zurückknopf Design*/
.btn-back {
    display: inline-block;
    padding: var(--fs-400) calc(var(--fs-400)*2);
    background-color: var(--light-white);
    border-radius: calc(var(--fs-400)*5);
    margin: var(--fs-400);
    color: black;
    border: 2px solid var(--grey-   );
    position: relative;
    top: 0;
    left: 0;
    text-decoration: none;
    height: auto;
    color: black;
    text-decoration: none;
}

.btn-back:hover {
    background-color: rgba(255, 255, 255, 0.829);
    transform: scale(105%);
}

/* Formatierung Überschrift */
h2 {
    width: 80%;
    max-width: 31.25rem;
    margin: 1rem auto var(--fs-600) auto;
    text-align: center;
    font-weight: 300;
    line-height: 1.5;
    text-transform: uppercase;
    font-size: var(--fs-600);
    color: var(--background-header);
    letter-spacing: 1px;
}



/* ab Bildschirmen über 430 Pixel Breite Doppelstriche */
@media only screen and (min-width: 430px) {
    h2 {
        /* Striche vor und nach Überschrift */
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        grid-template-rows: 27px 0;
        grid-gap: 20px;
        align-items: center;
    }    
    /*Striche vor und nach Überschrift*/
    h2:after, 
    h2:before {
        content: "";
        display: block;
        border-bottom: 1px solid var(--light-white);
        border-top: 1px solid var(--light-white);
        height: 5px;
    }
}

.impressum-container {
    background-color: var(--light-white);
    width: 90%;
    max-width: 70rem;
    margin: 0 auto;
    padding: 2rem;
    border: 2px solid var(--light-grey);
}

h3 {
    font-size: var(--fs-500);
    font-weight: 600;
    margin-bottom: var(--fs-500);
    text-align: center;
}

p {
    font-size: var(--fs-450);
    margin-bottom: var(--fs-400);
}

ul {
    list-style-type: none;
    margin-bottom: var(--fs-400);
}

ul li {
    font-size: var(--fs-450);
}

h4 {
    font-size: var(--fs-500);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/*lange Wörter umbrechen*/
a {
    color: black;
    text-decoration: 1px underline black;
    overflow-wrap: break-word;
}

.long-word {
    overflow-wrap: break-word;
    hyphens: auto;
}

.medium {
    font-weight: 700;
}