body::before {
    content: "";
    position: fixed;
    top: -160px;
    left: 600px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none; /* Makes the watermark non-interactive */
    background-image: url('../images/watermark.png');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1; /* Adjust opacity as needed */
}