/* estilos.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    text-align: center;
    padding: 40px;
  }
  
  h1 {
    color: #00695c;
    margin-bottom: 30px;
  }
  
  /* CONTENEDOR */
  .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* IMAGEN con nuevo efecto */
  .imagen-transformada {
    width: 300px;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 15px;
  }
  
  /* Nuevo efecto al hacer hover */
  .imagen-transformada:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* TEXTO */
  .texto-transformado {
    background-color: #4db6ac;
    color: white;
    padding: 15px 30px;
    font-size: 1.4em;
    border-radius: 10px;
    transition: transform 0.5s ease;
    cursor: pointer;
  }
  
  .texto-transformado:hover {
    transform: scale(1.1) rotate(-3deg) translateY(-5px);
  }
  