/*estilo+*/
body {
    font-family: 'Times New Roman', Times, serif;
    margin: 2rem;
    line-height: normal;
    padding: 0%;
    background-color: #faf3e9;
    background-size: cover;
    background-attachment: center;
    height: 100vh
    margin 2;
}

/*Mensaje emergente*/
/* fondo oscuro */
#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
/* imagen */
#popup img {
  width: 350px;
  max-width: 90%;
  border-radius: 10px;
}
/* tachita */
#cerrar{
  position: absolute;
  top: 15px;
  right: 15px;
  background: black;
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

/*animacion de letras del titulo*/
   .boton img{
    width: 80px;
    transition: transform 0.3s ease;
    cursor: pointer;
   }
   .boton img:hover {
    transform: scale(1.15) rotate(0.1deg);
   }
/*apostrofe pequeña*/
   .boton-pq img{
    width: 35px;
    transition: transform 0.3s ease;
    cursor: pointer;
   }
   .boton-pq img:hover {
    transform: scale(1.15) rotate(0.1deg);
   }
/*Letra L*/
   .boton-L img{
    width: 100px;
    transition: transform 0.3s ease;
    cursor: pointer;
   }
   .boton-L img:hover {
    transform: scale(1.15) rotate(0.1deg);
   }
/*Letra i minuscula*/
   .boton-i img{
    width: 65px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .boton-i img:hover {
    transform: scale(1.15) rotate(0.1deg);
  }

  /*botones de imagenes*/
.boton-imagen {
  width: 100px;          /* tamaño opcional */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.boton-imagen:hover {
  transform: scale(1.1);;
}
.boton-imagen:active {
  transform: scale(0.95);
}

 /*piña*/
.piiña {
  width: 100px;          /* tamaño opcional */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.piiña:hover {
  transform: scale(1.1) rotate(5.5deg);;
}
.piiña:active {
  transform: scale(0.95);
}






  .dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
  }
