


img {
  max-width: 100%; /* Ensures the image doesn't exceed its container's width */
  height: auto;    /* Automatically adjusts height to maintain aspect ratio */
  display: block;  /* Helps remove unwanted space below the image */
}

.lineas{
    border: 1px solid red;
}

.cont{
    display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center;    /* Centrado vertical */
  height: 100vh;          /* Opcional: Centrar en toda la pantalla */
}