html, body, * {
    cursor: url("https://i.postimg.cc/VLQ1QFgL/tiny.png"), default; 
  }

  .tv{opacity: 5%; z-index: 9909; position: fixed; pointer-events: none; width: 100%; height: 100%;}
body{
    background-color: rgb(31,46,52);
    color: rgb(255, 255, 255);
    overflow-x: hidden;
  }
  *{
    
    text-align: center;
    font-family: monospace;
   
  }
  label{
    color: white;
  }

  .opening{
    opacity: .06; z-index: 9909; position: fixed; pointer-events: none; width: 100%; height: 100%; animation: fade-out .4s linear;
   }
   
   @keyframes fade-out {
     0%{
       opacity: 1;
       
     }
     100%{
       opacity: 0.06;
     }
   }

   .title {
    width: 100%;
    overflow: hidden;
    padding-bottom: .4%;
  padding-top: .2%;}
  
  #text {
    white-space: nowrap;
    text-align: center;
    position: relative;
    left: 100%;   

    animation: scroll 10s linear infinite;
  }
  
  @keyframes scroll {
    0% {
      left: 100%;
    }
    100% {
      left: -500%;
    }
  }
  .req{
    top: 50%;
    bottom: 50%;
    padding: 10%;
  }
  .go-back a{
    position: sticky;
    z-index: 500;
    font-size: 25px;
    z-index: 400;
    left: 20%;
    padding-top: 10px;
    transition:  2s ease-in-out;
    text-decoration: none;
    color: white;
      font-family: monospace;
  }