
@media print {

    .watermark {
      /* Used to position the watermark */
      position: relative;
      opacity: 0.3;
    }
    
    .watermark__inner {
      /* Center the content */
      align-items: center;
      display: flex;
      justify-content: center;
    
      /* Absolute position */
      left: 0px;
      position: absolute;
      top: 0px;
    
      /* Take full size */
      height: 100%;
      width: 100%;
    }
    
    .watermark__body {
      /* Text color */
      color: rgba(0, 0, 0, 0.2);
      margin-top: -11em;

      /* Text styles */
      font-size: 2rem;
      font-weight: bold;
      text-transform: uppercase;
    
      /* Rotate the text */
      transform: rotate(-45deg);
    
      /* Disable the selection */
      user-select: none;
    }
    }