/*Bild wird genau so groß wie Main - Bereich und geht dort in den Hintergrund*/
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -17;
    filter: brightness(0.6); 
}

.home {
    height: 100%;
    width: min(90%, 70rem);
    background-color: var(--light-white);
    padding: 2rem;
    border-top: 2px solid var(--light-grey);
    border-bottom: 2px solid var(--light-grey);
    margin: 0 auto;
    display: grid;
    align-items: center;
}

/* Text mittig setzten*/
.main {
    align-items: center;
}

.hometext {
    width: 100%;
    margin: 0 auto;
}

/*Text wird weiß, groß und zentriert*/
.hometext p {
    color: black;   
    text-align: center;
    font-size: var(--fs-450);
    line-height: 1.5;
    font-weight: 300;
}

.hometext p:not(:last-of-type) {
    padding-bottom: var(--fs-400);  
}

@media only screen and (min-width: 1000px) {
    .hometext {
        max-width: 1000px;
    }

    .hometext p {
        font-size: var(--fs-500);   
    }
}