/* Bandeau filigrane en sur-impression */

.watermark-overlay-wrapper {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.watermark-overlay {
	transform: scale(1.5) translate(0, -10%) rotate(-25deg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(200, 0, 0, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    /*z-index: 9999;*/
    /*pointer-events: none;*/
    user-select: none;
}

/* Tablettes */
@media (max-width: 1024px) {
    .watermark-overlay {
        font-size: 56px;
        transform: scale(1.5) translate(0, -10%) rotate(-25deg);
        color: rgba(200, 0, 0, 0.4);
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .watermark-overlay {
        font-size: 36px;
        transform: scale(1.5) translate(0, -10%) rotate(-15deg);
        color: rgba(200, 0, 0, 0.35);
    }

    .content {
        padding: 20px;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .watermark-overlay {
        font-size: 28px;
        transform: scale(1.5) translate(0, -10%) rotate(-10deg);
        color: rgba(200, 0, 0, 0.3);
    }
}

