body {
  padding: 0;
  color: #3A3A3A;
  text-align: center;
  font-family: "Jersey 10";
  font-size: 1.5em;
  background-image: url(../assets/bg.png);
  background-repeat: repeat;
  background-size: 50px;
}

body button {
  font-family: "Jersey 10";
  font-size: 1.5em;
  background-color: #f9493f;
  color: #fff;
  padding: 20px 120px;
  border: 0;
  box-shadow: 0;
  border-radius: 5px;
  margin-bottom: 20px;
}

/*  styling font here gobally bc below tags werent working  */

#game-intro {
  padding: 20px 40px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 420px;
  background-color: #fff;
  border-radius: 5px;
}

#game-end {
  display: none;

  padding: 20px 40px;
  margin-left: auto;
  margin-right: auto;
  width: 420px;
  background-color: #fff;
  border-radius: 5px;
}

#stats {
  display: none;
  padding-left: 40px;
  padding-right: 40px;
  align-self: center;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  color: #fff;
  background-color: #9C899F;
  width: 420px;

  margin-left: auto;
  margin-right: auto;

  margin-bottom: 10px;
  /* gap: 20px; */
}

#game-container {
  /*padding: 20px 40px;*/
  display: flex;
  flex-direction: column;
  justify-items: center;
  width: 500;
  padding: 0px 0px;
  justify-content: center;
}

#game-screen {
  display: none;
  align-self: center;
  border-radius: 5px;
  align-content: center;
  padding: 0px 0px;
  overflow: hidden;
  position: relative;
  background-image: url(../assets/road.png);
  background-size: cover;
  animation: slide 2.67s linear infinite;
}

@keyframes slide {
  0% {
    background-position: 0 -1000px;
  }
  95% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 50px;
  }
}

/* 
THIS IS DOING NOTHING:
.game-intro p {
  font-size: 18px;
  font-family: "Verdana";
} 
BE SURE TO STYLE FONTS IN BODY TAG
*/

.jersey-10-regular {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.logo-img {
  width: 400px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.alt-logo-img {
  width: 250px;
}

.arrows-img {
  width: 150px;
}

.pizza-life {
  font-size: 24px;
  display: inline-block;
  margin-right: 2px;
}

.pizza-life.flashing {
  animation: flash 0.4s infinite alternate;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}