* {
  margin: 0;
  padding: 0;
}

body {
  padding: 0;
  text-align: center;
  background-color: black;
  color: #fff;
}

#game-intro {
  padding: 20px 0px;
}

#game-intro > p {
  text-align: left;
  font-family: 'Bungee Spice', sans-serif;
}

#game-container {
  width: 100vw;
  padding: 20px 0px;
  justify-content: center;
}
#game-container > div {
  color: #fff;
  display: flex;
  font-size: 20px;
  z-index: 1;
}
.instructions {
  display: flex;
  justify-content: center;
  font-size: 15px;
  text-align: center;
  padding-top: 10px;
}

#game-container p {
  padding: 0 20px;
  font-family: 'Bungee Spice', sans-serif;
}
#game-screen {
  display: none;
  align-content: center;
  overflow: hidden;
  position: relative;
  background: url('https://i.ibb.co/Pjn8Xmv/background1.png');
  background-size: cover;
  animation: slide 20s linear infinite;
}

@keyframes slide {
  from {
    background-position: -512px -512px;
  }
  to {
    background-position: 0 0;
  }
}

#game-end {
  display: none;
}

.game-intro p {
  font-size: 18px;
  font-family: 'Verdana';
}

.logo-img {
  width: 900px;
  padding: 20px 0;
}

.arrows-img {
  width: 100px;
}

.endGame-img {
  width: 700px;
  margin-bottom: 30px;
}

body button {
  font-size: 25px;
  background-color: #fff;
  color: black;
  padding: 10px 20px;
  border: 0;
  box-shadow: 0;
  border-radius: 5px;
  margin-bottom: 20px;
}

body button:hover {
  background-color: rgb(255, 102, 0);
  color: #fff;
}

/* CSS for the bullet */
.bullet {
  position: absolute;
  width: 5px;
  height: 100px;
  background-color: red;
  border-radius: 100%;
  z-index: 1; /* higher z-index to make sure the bullet appears above other elements */
}
