@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}
body {
margin: 0;
overflow: hidden;
display: flex;
height: 100vh;
background-color: #f4f4f4;
font-family: 'Helvetica', sans-serif;
justify-content: center;
}
#canva-top {
position: absolute;
 display: block;
  text-align: center;
  margin-top: 5px;
}
#canva-bottom {  
  position: absolute;
  display: block;
   text-align: center;
   bottom: 20px;
   font-size: 12px;
}
canvas {
  position: absolute;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid black;
  display: block;
  cursor: url("https://xouva.com/play/the_fly/martillo.svg"), default;
  justify-content: center;
}
.score{
  color: red;
  font-family: "Press Start 2P", system-ui;
  margin-top: 50px;
  /*z-index: 100;*/
  font-size: 5vw;
}

#text {
  font-size: 28px;
  color: rgb(255, 0, 0);
  user-select: none;
  text-align: center;
  font-weight: bold;
  z-index: 10;
  position: absolute;
  transition: all 3s ease;
}

/* Estilo para los fragmentos del texto */
.fragment {
  position: absolute;
  color: red;
  font-size: 28px;
  pointer-events: none;
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
}