
    @font-face {
        font-family: "game";
        src: url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;800&display=swap");
      }
      * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
      }
      button:focus {
        outline: 0;
      }
      ::-webkit-scrollbar{
          width:0px;
      }
      .footer{
          display: none;
      }
      .sticky{
          position: fixed;
          background: black;
          top: 0;
          left: 0;
          width: 100%;
          padding: 0 100px;       
          height: 80px;
          display: flex;
          justify-content: flex-end;
          align-items: center;
          z-index: 2;
      }
      html,
      body {
        height: 100%;
        font-family: "Poppins", sans-serif;
        color: white;
      }
      .sticky{
          height: 80px;
          /* transition: 0.5s; */
      }
      header{
          position: fixed;
          background: black;
          top: 0;
          left: 0;
          width: 100%;
          padding: 0 100px;       
          height: 100vh;
          display: flex;
          justify-content: flex-end;
          align-items: center;
          z-index: 2;
      }
      .logo{
          position: absolute;
          top: 50%;
          left: 50%;
          color: gray;
          transform: translate(-50%,-50%);
          font-size: 8em;
          text-align: center;
          -webkit-box-reflect: below 1px linear-gradient(transparent,white);
          line-height: 0.7em;
          outline: none;
          animation:tubelight 5s linear infinite;
          text-transform: uppercase;
          letter-spacing: 15px;
          text-decoration: none;
          z-index: 1;
      }
      .sticky .logo{
          position: absolute;
          left: 61px;
          font-size: 2em;
          transform: translate(0,-50%);
      
      }
      @keyframes tubelight{
          0%,18%,20%,50.1%,60.1%,65.1%,80%,90.1%,92%  
          {
              color: gray;
              text-shadow: none;
          }
          18.1%,20.1%,30%,50%,60%,65%,80.1%,90%,92.1%,100%
          {
              color: white;
              text-shadow: 0 0 10px gray,
              0 0 20px gray,
              0 0 40px gray,
              0 0 80px gray,
              0 0 160px gray;
      
          } 
          
      }
      body {
        background-color:black;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
      }
      canvas {
        background-color: #181825;
      }
      .container {
        display: flex;
        width: 100%;
        height: 100%;
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
      }
      #ui {
        display: flex;
        align-items: center;
        font-size: 10px;
        flex-flow: column;
        margin-left: 10px;
      }
      h2 {
        font-weight: 200;
        transform: rotate(270deg);
      }
      #score {
        margin-top: 20px;
        font-size: 30px;
        font-weight: 800;
      }
      .block{
        display: none;
      }
      .container{
        top: 80%;
        left: 20%;
      }
      .control{
        position: fixed;
        top: 73%;
        left: 200px;
        display: inline-block;
      }
      .uparrow{
        width: 30px;
        height: 30px;
        border: 2px solid black;
        margin-left: 43px;
        margin-bottom: 5px;
        background: white;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);

    }
    .leftarrow{
        width: 30px;
        transform: rotate(270deg);
        height: 30px;
        display: inline-block;
        border: 2px solid black;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        background:white;
        
    }
    .downarrow{
        width: 30px;
        height: 30px;
        border: 2px solid black;
        margin-left: 44px;
        margin-top: 5px;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        transform: rotate(180deg);
        background: white;
    }
    .rightarrow{
        width: 30px;
        height: 30px;
        display: inline-block;
        background: white;
        margin-left: 48px;
        transform: rotate(90deg);
        border: 2px solid black;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);

    }
      .noselect {
        user-select: none;
      }
      #replay {
        font-size: 10px;
        padding: 10px 20px;
        background: #6e7888;
        border: none;
        color: #222738;
        border-radius: 20px;
        font-weight: 800;
        transform: rotate(270deg);
        cursor: pointer;
        transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
      }
      #replay:hover {
        background: #a6aab5;
        background: #4cffd7;
        transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
      }
      #replay svg {
        margin-right: 8px;
      }
      @media (max-width: 600px) {
        #replay {
          margin-bottom: 20px;
        }
        #replay,
        h2 {
          transform: rotate(0deg);
        }
        #ui {
          flex-flow: row wrap;
          margin-bottom: 20px;
        }
        #score {
          margin-top: 0;
          margin-left: 20px;
        }
        .container {
          flex-flow: column wrap;
        }
      }
      #author {
        width: 100%;
        bottom: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: inherit;
        text-transform: uppercase;
        padding-left: 35px;
      }
      #author span {
        font-size: 10px;
        margin-left: 20px;
        color: inherit;
        letter-spacing: 4px;
      }
      #author h1 {
        font-size: 25px;
      }
      .wrapper {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
      }
     