
input, textarea {
  outline: none !important;
}

* {
  outline: none !important;
}

html {
  height: 480px;
}

body {

  color: #ffffff;
  padding: 0;
  margin: 0;
  width: 320px;
  height: 480px;
}

.mmpww-wrapper {
  position: relative;
  width: 320px;
  height: 480px;
  cursor: pointer;
  background-color: #000000;
  overflow: hidden;
}

.frame-one {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 480px; 
}

.frame-two {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 480px;
}

.frame-three {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 480px;
}

.frame-four {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 480px;
}

.end-frame {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 480px;
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


.instruction {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5); 
  animation: popUp 0.6s ease forwards; 
}

.instruction img {
  width: 230px;
}

.hammer {
  position: absolute;
  top: 80%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  animation: moveUp 1s ease forwards; /* Apply the move up animation */
}

.hammer img {
  width: 150px;
}

.shreds-one {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  animation: popUp 0.4s ease forwards; 
}

.shreds-three {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 9;
  animation: popUp 0.4s ease forwards; 
}

.shreds-three img {
  width: 270px;
}

.shreds-one img {
  width: 300px;
}

@keyframes popUp {
  0% {
    transform: translate(-50%, -50%) scale(0.5); /* Start small and centered */
    opacity: 0; /* Start invisible */
  }
  100% {
    transform: translate(-50%, -50%) scale(1); /* End at full size and centered */
    opacity: 1; /* End fully visible */
  }
}

@keyframes moveUp {
  0% {
    top: 130%; 
  }
  100% {
    top: 78%; 
  }
}

@keyframes hitAnimation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* Start with no rotation */
  }
  50% {
    transform: translate(-50%, -55%) rotate(-20deg); /* Move up and tilt */
  }
  100% {
    transform: translate(-50%, -55%) rotate(0deg); /* Return to original position */
  }
}

