Changed around line 1
+ :root {
+ --space-color: #0a0e1a;
+ --star-color: #ffffff;
+ --text-color: #f0f0f0;
+ --accent-color: #ffd700;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background-color: var(--space-color);
+ color: var(--text-color);
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ min-height: 100vh;
+ overflow-x: hidden;
+ }
+
+ header {
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(to bottom, rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.7));
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ color: var(--accent-color);
+ margin-bottom: 0.5rem;
+ }
+
+ .starfield {
+ position: relative;
+ height: 100vh;
+ width: 100%;
+ overflow: hidden;
+ }
+
+ .stars {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: transparent;
+ animation: twinkle 5s infinite ease-in-out;
+ }
+
+ .stars:nth-child(2) {
+ animation-delay: 1s;
+ }
+
+ .stars:nth-child(3) {
+ animation-delay: 2s;
+ }
+
+ @keyframes twinkle {
+ 0%, 100% {
+ opacity: 0.5;
+ }
+ 50% {
+ opacity: 1;
+ }
+ }
+
+ .stars::before {
+ content: '';
+ position: absolute;
+ width: 2px;
+ height: 2px;
+ background: var(--star-color);
+ border-radius: 50%;
+ box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
+ animation: fall linear infinite;
+ }
+
+ @keyframes fall {
+ from {
+ transform: translateY(-100%);
+ }
+ to {
+ transform: translateY(100vh);
+ }
+ }
+
+ .content {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.05);
+ border-radius: 8px;
+ backdrop-filter: blur(10px);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background: rgba(10, 14, 26, 0.8);
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .content {
+ margin: 1rem;
+ padding: 0.5rem;
+ }
+ }