@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&family=Open+Sans:ital@1&family=Poppins&display=swap');

*{font-family: 'Nunito Sans', sans-serif;
color: white;}

.viewport {
  width: 510px;
  height: 600px;
  /* border: 2px solid red; */
  display: flex;
  justify-content: space-evenly;
  position: relative;
}
.start-screen {
  height: 100%;
  width: 100%;
  /* border: 2px solid black; */
  position: absolute;
  /* background-color: rgb(198, 189, 189); */
  background-image: linear-gradient(to right,#182032, #1d192c);
  z-index: 1;
  justify-content: center;
  align-items: center;
}

#canvas1 {
  /* border: 4px solid red; */
  z-index: -1;
  position: absolute;
}

.game-over-screen {
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right,#2f2a2b, #0a0909);
  font-size: 40px;
  position: absolute;
  z-index: -2;
}

button {
  background-color: #187cae;
  cursor: pointer;
  border: none;
  font-size: 20px;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 10px;
}
.current-score,
.new-highscore {
  display: none;
  margin: 0px 0px;
  font-size: 20px;
}

.inner{
    width:70%;
    margin: 0 auto;
}

.instructions{
  border: 1px solid white;
  padding: 10px;
  border-radius: 20px;
}

.machine-gun{
  position: absolute;
  height: 40px;
  width: 40px;
  z-index:1;
  left: -100px;
  bottom: 10px;
  border: 5px solid #607d8b;
  padding: 20px;
  border-radius: 50%;
  /* display: none; */
  background-color: rgb(66, 54, 36);
}
