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

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #0a1a0a;
  font-family: Georgia, serif;
}

.scene {
  position: relative;
  width: 100%;
  height: 100%;
}

.sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #0d1f0d 0%,
    #1a3520 40%,
    #2d5a35 70%,
    #3d7a45 100%
  );
}

.fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg,
    rgba(180,210,185,0.15) 0%,
    transparent 100%
  );
}

svg.trees {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60vh;
}

.title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.title h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(235, 242, 236, 0.82);
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
