html, body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

html {
    background: url('../imgnew/bg.png') no-repeat center center fixed;
    background-size: cover;
}

/* Verhindert das Springen auf mobilen Geräten */
body {
    background: none !important; /* Verhindert doppelte Hintergründe */
}

/* Pseudo-Element für das zweite Hintergrundbild */
body::before {
    content: "";
    position: fixed;
    bottom: 0;
    right: 0;
    width: auto;
    height: 30vh;
    background: url('../imgnew/bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

/* Hintergrund bei unter 600px um 30% nach links verschieben */
@media screen and (max-width: 1000px) {
    html {
        background: url('../imgnew/bgk.png') no-repeat calc(50% - 30%) center fixed;
        background-size: cover;
    }

    body::before {
        background: url('../imgnew/bgk.png') no-repeat center center;
    }
}
