* {
  box-sizing: border-box;
}

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

body {
  background-color: #050816;
  color: #f4f7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scene__bg {
  position: absolute;
  inset: 0;
  background-color: #050816;
  background-image: url("../images/cloud-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.scene__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.logo {
  display: block;
  width: min(63vw, 420px);
  height: auto;
  max-height: 54vh;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .scene__canvas {
    display: none;
  }
}
