* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* El header ocupará toda la pantalla */
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; /* Asegura que el contenedor ocupe toda la pantalla */
}

.logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Mantiene la proporción del logo */
}
