/* with help of (github projects, google, youtube designs) */

body {
  text-align: center;
  font-family: "Comic Sans MS", Arial, sans-serif;
  background: linear-gradient(to bottom, #87ceeb, #e0f7fa);
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  overflow-x: hidden;
}


h1 {
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 2px black;
  margin-bottom: 10px;
}


.info {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #333;
}

#score, #time {
  font-weight: bold;
  color: red;
}


.game {
  display: grid;
  grid-template-columns: repeat(3, 200px); 
  gap: 12px;
  justify-content: center;
  margin: 15px auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0px 6px 15px black;
}


.hole {
  position: relative;
  width: 200px;  
  height: 160px; 
  overflow: hidden;
  border-radius: 12px;
  background: #6ab04c;
  box-shadow: inset 0px 3px 6px black;
}

.hole-img {
  width: 100%;
  height: auto;
}


.bunny-img {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; 
  cursor: pointer;
  transition: bottom 0.3s ease;
}

.hole.up .bunny-img {
  bottom: 25px;
}

/* Start Button */
#startBtn {
  background: dark orange;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 12px;
}

#startBtn:hover {
  background: dark rgb(227, 95, 7);
  transform: scale(1.05);
}

/* End Game Message */
.message {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
  color: #2c3e50;
  text-shadow: 1px 1px white;
}