a, ul, li {
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  box-sizing: inherit;
}

#game-canvas {
  cursor: crosshair;
  background-image: url("../images/pokeback2.jpg");
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
}

.background {
  background-image: url("../images/pokeback.png");
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 50px;
}

.overall-game {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.instructions {
  display: flex;
  justify-content: space-between;
  font-family: 'Press Start 2P', cursive;
  font-size: 14px;
}

.instructions-inner-div {
  width: 450px;
}

.list > li {
  margin-bottom: 10px;
}

.pikachu {
  background-position: center;
  background-image: url("../images/pikachu2.png");
  background-size: cover;
  height: 250px;
  width: 220px;
}

.the-game {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.footer-links {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.footer-links > a {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 0 20px 0 20px;
}

.footer-links i {
  margin-right: 10px;
  font-size: 32px;
}