/* Minimal layout: center a single logo in the viewport on all device sizes. */
:root {
  color-scheme: only light;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

main {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

img {
  display: block;
  width: min(90vw, 560px);
  max-height: 80dvh;
  height: auto;
  object-fit: contain;
}
