.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-image: url("../images/wall.png");
}

.menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 90px;
  width: 100%;
  background-color: #0f0909;
  color: #f5f0f0;
  border-bottom: 5px solid #ffd700;
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.square {
  height: 150px;
  width: 150px;
  border: 1px solid #000000;
  background-color: #7fffd4;
}

.enemy {
  background-image: url("../images/ralph.png");
  background-size: cover;
}

.menu-lives {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.menu-time, .menu-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-time h2:nth-child(2),
.menu-score h2:nth-child(2) {
  margin-top: 1rem;
}

.hit {
  color: green;
}

.miss {
  color: red;
}

