/* tailwind.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f3f4f6; /* fondo gris claro tipo Tailwind */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
  }
  
  h1 {
    font-size: 2.5rem;
    color: #dc2626; /* rojo tipo Tailwind (red-600) */
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.2rem;
    color: #374151; /* gris tipo Tailwind (gray-700) */
  }
  
  img {
    margin-bottom: 1.5rem;
    max-width: 100%;
    width: 400px; /* Aumentá este valor si querés que se vea más grande */
    height: auto;
  }