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

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

.panel {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square {
  height: 150px;
  width: 150px;
  background-color: #1aeaa5;
  border: 1px solid #000000;
  cursor: pointer;
}

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

.menu-lives {
  display: flex;
  align-items: center;
  justify-content: center;
}

.second {
  margin-top: 1rem;
}
.resetBtn {
  margin: 20px auto;
  width: 120px;
  padding: 10px;
  background-color: #000000;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 1rem;
}









