/* body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 100px,
        rgba(128, 128, 128, 0.05) 100px,
        rgba(128, 128, 128, 0.05) 200px
    );
    pointer-events: none;
    z-index: 9999;
}

.watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    color: rgb(102, 102, 102, 0.5);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 150px;
    transform: rotate(-45deg);
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 100px,
        transparent 100px,
        transparent 200px
    );
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
}

.watermark span {
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
} */

#watermark {
    color: rgba(128, 128, 128, 0.1);
    height: 100%;
    left: 0;
    line-height: 2;
    margin: 0;
    position: fixed;
    transform: rotate(-90deg);
    transform-origin: 0 100%;
    width: 100%;
    word-spacing: 10px;
    font-size: 13px;
    z-index: 1;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    pointer-events: none;
    z-index: 9999;
}
