/* Aleskay temporary landing — centered logo on white background */

:root { color-scheme: light; }

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.wrap {
  width: min(92vw, 760px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
