.universal-watermark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1); /* light transparent overlay */
    z-index: 999999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.universal-watermark-text {
    font-weight: 700;
    /*color: rgba(0, 0, 0, 0.07);*/
    color: red;
    transform: rotate(-25deg);
    white-space: nowrap;
    text-align: center;
    font-family: 'Zain', sans-serif;
    font-size: 10vw; /* default for small screens */
}

/* Tablets */
@media (min-width: 768px) {
    .universal-watermark-text {
        font-size: 8vw;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .universal-watermark-text {
        font-size: 6vw;
    }
}
