*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #06080e;
}

#sky {
  display: block;
  width: 100%;
  height: 100%;
}

.title {
  position: fixed;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Noto Serif SC', serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: rgba(210, 215, 230, 0.7);
  letter-spacing: 0.5em;
  user-select: none;
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 0.5; }
}

::selection { background: transparent; }
