:root {
  color-scheme: light;
  --page-bg: #f6f5f3;
  --rocket: #ec1c24;
  --shadow: rgba(36, 32, 107, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--page-bg);
}

body {
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.splash {
  position: relative;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 42%),
    url("./zagluahka.png") center / 100% 100% no-repeat,
    var(--page-bg);
}

.rocket-flight {
  display: none;
}

@media (max-width: 900px) {
  .splash {
    background-size: cover;
    background-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}
