/* Fondo de pantalla con imagen */
body {
    margin: 0;
    height: 100vh;
    background-image: url('../recursos/jorge1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Contenedor centrado */
  .container {
    display: flex;
    gap: 30px; /* Espacio entre botones */
    
  }

   
  /* Botones con imagen */
  .boton-imagen {
    background: none;
    border: none;
    padding-top: 275px;
    cursor: pointer;
  }
  
  .boton-imagen img {
    /* width: 100px;  Ajusta el tamaño que quieras */
    height: auto;
    transition: transform 0.3s;
  }
  
  .boton-imagen:hover img {
    transform: scale(1.1);
  }
  