* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  background-color: #E85D3E; 
  background-image: linear-gradient(135deg, #ff9bf3 0%, #b218ba 35%, #730071 100%); 
  color: #fff; 

  min-height: 100%;
  display: grid; 
  place-items: center; 
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  position: relative;
}

body::before {
  content: "";
  position: fixed; 
  inset: 0;
  background: rgba(0, 0, 0, 0.3); 
  pointer-events: none;
  z-index: 1;
}
header, footer {
  z-index: 2;
}

#snow {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 0;
}

main {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
  width: min(90vw, 900px);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 12px;
}
h1 { 
  margin: 0 0 0.5rem; 
  position: relative;
  text-align: center;
  z-index: 2;
  font-size: clamp(2rem, 6vw, 3rem); 
  line-height: 1.1; 
}
p { 
  margin: 0; 
  text-align: center;
  z-index: 2;
  font-size: clamp(1rem, 2.5vw, 1.2rem); 
  opacity: 0.95; 
}