body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

@media print {
  body {
    background-color: white;
    color: white;
    visibility: hidden;
    position: relative;
  }
  body::after {
    content: "Do not print this page. This is property of Anjali Shukla for OWASP EKS Goat. Employer or employee is not responsible for the content";
    font-size: 18pt;
    color: rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1000;
    text-align: center;
  }
  /* Display the footer */
  #footer {
    visibility: visible !important;
    color: black !important;
    background-color: white !important;
    font-size: 12pt;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    border-top: 1px solid #ccc;
    z-index: 1000;
  }
  /* Change the content of the footer */
  #footer::before {
    content: "© All rights reserved with Anjali & Divyanshu.";
  }
}

