*{
    margin: 0;
    padding: 0;
}
header{
    padding: 5px 5px;
    background-color: #000000;
    font-family: "Press Start 2P", system-ui;
   font-weight: 400;
   font-style: normal;
   animation: rainbow 4s infinite ease-in-out;
   font-size: 10px;
   text-align: center;
   user-select: none;
}
.game-wrapper{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
}
.game{
    width: 1200px;
    height: 688px;
    background: url(img/Background/background-blue.png);
    animation: scroll_background 5s linear infinite;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}
footer{
    padding: 5px 5px;
    background-color: #000000;
    font-family: "Press Start 2P", system-ui;
   font-weight: 400;
   font-style: normal;
    color: #005ce6;
   font-size: 10px;
   text-align: center;
   user-select: none;
}
.player{
     user-select: none;
      -drag: none;
     -moz-user-select: none;
    -webkit-user-drag: none;
   -webkit-user-select: none;
}
.laser{
    position: absolute;
    width: 15px;
    user-select: none;
      -drag: none;
     -moz-user-select: none;
    -webkit-user-drag: none;
   -webkit-user-select: none;
}
.left{
  position: absolute;
  z-index: 1;
  width: 25%;
  height: 90vh;
  left: 0;
}
.right{
  position: absolute;
  z-index: 1;
  width: 25%;
  height: 90vh;
  right: 0;
}
.SHOOOOOT{
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 90vh;

}
@keyframes rainbow{
    100%,0%{
        color: rgb(255,0,0);
    }
    8%{
        color: rgb(255,127,0);
    }
    16%{
        color: rgb(255,255,0);
    }
    25%{
        color: rgb(127,255,0);
    }
    33%{
        color: rgb(0,255,0);
    }
    41%{
        color: rgb(0,255,127);
    }
    50%{
        color: rgb(0,255,255);
    }
    58%{
        color: rgb(0,127,255);
    }
    66%{
        color: rgb(0,0,255);
    }
    75%{
        color: rgb(127,0,255);
    }
    83%{
        color: rgb(255,0,255);
    }
    91%{
        color: rgb(255,0,127);
    }
}
    @keyframes scroll_background{
        from{
            background-position-y: 0px;
        }
        to{
            background-position-y: 256px
        }
    }
@media all and (max-width: 800px) {
  body{
    background: black;
  }
  header{
    height: 2vh;
  }
  footer{
    height: 2vh;
  }
    .game{
    width: 350px;
    height: 93vh;
}a
}
