#home {
    background-image: url("../media/Titelbild.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 93.75vh;
    display: flex;
    padding: 2rem;
}

@media only screen and (max-width: 800px) {
    #home {
        background-attachment: scroll;
    }
}