
body {
    background-image: url(baustellenschild\2.0.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 24px;
    padding: 100px;
    color: white;
    position: relative; /* Erforderlich, um das Pseudo-Element zu positionieren */
}

/* Ein halbtransparentes Overlay hinzufügen, um das Bild zu verdunkeln */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Hintergrundfarbe mit 50% Deckkraft (halbtransparent) */
    z-index: -1; /* Hinter das Hintergrundbild legen */
}
