html,
body,
div,
span,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
select,
section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  border: 0;
  box-sizing: border-box;
}
body {
  cursor: url("./assets/cursor.png"), default;
  background-color: #add495;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}
.bg {
  background-image: url("./assets/background.png");
  width: 90vw;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* Worm score meter */
.score-area {
  width: 1000px;
  height: 10vh;
}
.score-container {
  overflow: hidden;
  transition: width 0.3s ease-in-out;
}
.worm-meter {
  width: 1000px;
}

/* Moles area */
.mole-area {
  width: 100%;
  height: 80%;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: center;
  align-items: center;
}
.hole-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hole {
  border-radius: 50%;
  background: black;
  width: 13rem;
  height: 13rem;
  overflow: visible;
}
.hole img {
  position: relative;
  right: 4rem;
  bottom: 2rem;
}

/* Mole feeding */
.hungry {
  cursor: url("./assets/cursor-worm.png"), default;
}
.gone {
  display: none;
}
.restart-btn {
  padding: 15px 25px;
  margin: 1rem;
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #04aa6d;
  border: none;
  border-radius: 15px;
}

.restart-btn:hover {
  background-color: #3e8e41;
}

.restart-btnn:active {
  background-color: #3e8e41;

  transform: translateY(4px);
}
.win {
  max-width: 80%;
  max-height: 80%;
  cursor: pointer;
}
@media (max-width: 800px) {
  .hole-container {
    width: 50%;
    flex-direction: column;
  }
}
