html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Centra verticalmente */
  height: 100vh;           /* Ocupa toda la altura de la ventana */
}

.info img {
  max-width: 100%;   /* Ajusta el logo si es muy grande */
  height: auto;
}
