

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Poetsen+One&display=swap');

*{
  margin: 0;
  padding: 0;
}

.navbarwreck{
height: 30%;
width: 100%;
}
.contentwreck{
border: 1px solid none;
  width: 100%;
  overflow-y: auto;

}
.footer{
 height:10%; 
}
body{
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(58, 129, 0);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.mulai{
width: 78px;
height: 35px;
font-size: 30px;
background-color: brown;

}
.retry{
  width: 78px;
  height: 35px;
  font-size: 30px;
  background-color: rgb(202, 65, 16);
}
.score{
  font-size: 30px;
 
}
.board{
  margin: 0 auto;
  border: 3px solid white;
  border-radius: 20px;
  background: url("./soil.png");
  background-size: cover;
  height: 65vh;
  width: 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 60px;

}
.hole{
  background-color: rgb(165, 85, 11);
  border-radius: 50%;
  box-shadow: inset 0 10px 0 7px rgb(53, 21, 6),
              inset 0 20px 20px 15px rgba(0, 0, 0, .3),
              0 0 5px rgba(0, 0, 0, .5);
  position: relative;
  overflow: hidden;
}
.hole .mole{
  width: 8vw;
  height: 14vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  animation: rise .3s ease-out;
}
@keyframes rise {
  0%{
      transform: translateX(-50%) translateY(100%);
  }
  100%{
      transform: translateX(-50%) translateY(0);
  }
}

.cursor{
  height: 110px;
  width: 100px;
  position: absolute;
  top: 100px;
  left: 100px;
  background-image: url('palu1.png');
  background-size: 100% 100%;
  transform: translate(-20%, -20%);
  transition: transform .1s;
pointer-events: none;
}
.cursor.active{
  transform: translate(-20%, -20%) rotate(-45deg);
}

.judulw{

  font-size: 50px;
  color: black;
    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.ket{
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.btn{
  display: flex;
  flex-direction: row;
 justify-content: center;
 align-items: center;
 
}





/* h1, h2 {
  font-size: 60px;
  text-align: center;
  font-family: sans-serif;
  margin: 10px;
}
h3{
  font-size: 20px;
  text-align: center;
  font-family: sans-serif;
  padding: 5px;
}
 
button {
  display: block;
  margin: auto;
  width: 100px;
  height: 50px;
  background-color: brown;
  font-size: 30px;
}

.containerw {
  width: 300px;
  margin: auto;
  cursor: url(palu1.png), auto;
}

.container:active {
  cursor: url(palu2.png), auto;
}

.place{
  position: relative;
  width: 25vw;
  height: vh;
}
.place img{
  position: relative;
  width: 25vw;
  height: auto;
  

}
.place img:first-child{
 position: relative;
display: flex;
flex-direction: row;  
  

}
.place img:last-child{

  bottom: 400px;
  position: relative;
  overflow: hidden;
  float: left;
  transition:top 0.3s;
}

.tanah {
  width: 25%;
  height:25%;
  position: relative;
  overflow: hidden;
  float: left;
}
.tikus{
  width: 25%;
  height: 25%;
  background: url(tikus.png) bottom center no-repeat;
  background-size: 60%;
  position: absolute;
  top: 100px;
  transition: top 0.3s;
}

.tanah::after {
  content: '';
  display: block;
  width: 200px;
  height: 100px;
  background: url(tanah.png) bottom center no-repeat;
  background-size: 80%;
  position: absolute;
  bottom: -25px;
}

.tikus {
  width: 100%;
  height: 100%;
  background: url(tikus.png) bottom center no-repeat;
  background-size: 60%;
  position: absolute;
  top: 100px;
  transition: top 0.3s;
}

.tanah.muncul .tikus {
  top: -15px;
}
.borderw{
  height: fit-content;
  width: fit-content;
  background-size: cover;
  margin: 0 auto;
  background: url("./soil.png");
  border: 3px solid white;
  border-radius: 25px;
  

} */


    /* border: 5px solid black;
    border-width: 1px;

    background-color: rgb(238, 91, 38);
  
 
  /* .positionborder{
    display: flex;
    justify-content: center;
    align-items: center;
  } */
