*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* Contenedor que ocupa toda la pantalla y centra el logo */
.logo-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;      /* centro vertical */
  justify-content: center;  /* centro horizontal */
  background-color: #ffffff;
}

/* Logo responsive */
.logo {
  width: min(60vw, 420px);  /* se ajusta en desktop, tablet y mobile */
  height: auto;
  display: block;
}
