body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 600px) {
    body {
        background-image: url('ostseehand.webp');
        background-size: contain;
    }

    #welcomeText {
        margin-right: 80px;
        margin-top: 240px;
        font-size: 2em;
    }
}
body {
    background-image: url('ostsesma.webp'); /* Pfad zum Hintergrundbild */
    background-size: cover; 
    background-position: center; /* zentriert das Bild */
    display: flex;
    justify-content: center;
    align-items: center;
}

#welcomeText {
    display: flex;
    position: relative;
    top: -120px; /* Negativer Wert verschiebt das Element nach oben */
    font-family: verdana;	
    color: #171717;
    font-size: 4em; 
    transition: opacity 3s ease;
}