#no-js-background {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      color: white;
      font-size: 24px;
      font-family: Arial, sans-serif;
      text-align: center;
      z-index: 9999;
      justify-content: center;
      align-items: center;
      pointer-events: all;

    }

    #no-js-message {
      background-color: rgba(0, 0, 0, 0.7);
      padding: 20px;
      border-radius: 10px;
      border: 2px solid #8b0000;
      font-size: 18px;
    }

    body {
      margin: 0;
      padding: 0;
      height: 100vh;
      background: url('assets/media/imgbg') no-repeat center center fixed;
      background-size: cover;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
   
    }

    body.no-js * {
      pointer-events: none;
    }

    body.no-js {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }

    body.no-js {
      overflow: hidden;
    }

    noscript {
      display: block;
    }