* { margin: 0; padding: 0; box-sizing: border-box; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } html, body { overflow-x: hidden; width: 100%; } body { font-family: 'Courier New', monospace; background: white; image-rendering: pixelated; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; } .sky-container { position: relative; width: 100%; height: 40vh; background: #5eb3f6; overflow: hidden; } #skyCanvas, #cloudCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; image-rendering: pixelated; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; pointer-events: none; user-select: none; } #cloudCanvas { z-index: 6; } .logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; } #logoCanvas { image-rendering: pixelated; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; pointer-events: none; user-select: none; position: relative; z-index: 1; } .fade-transition { position: absolute; bottom: 0; left: 0; width: 100%; height: 240px; display: block; z-index: 5; pointer-events: none; } #fadeCanvas { display: block; width: 100%; height: 100%; image-rendering: pixelated; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; mix-blend-mode: normal; } canvas { image-rendering: pixelated; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; } .content { max-width: 700px; margin: 0 auto; padding: 2rem; color: #000; } .content h2 { font-size: 2rem; margin-bottom: 1.5rem; font-family: 'Courier New', monospace; font-weight: bold; } .content h3 { font-size: 1.25rem; margin-bottom: 1rem; font-family: 'Courier New', monospace; font-weight: bold; } .content p { font-size: 1rem; line-height: 1.6; margin-bottom: 1rem; font-family: 'Courier New', monospace; } .content hr { margin: 1.5rem 0; border: none; border-top: 1px solid #ddd; } .content pre { background: #282c34; color: #abb2bf; padding: 1rem; border-radius: 4px; overflow-x: auto; margin-bottom: 1rem; font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace; font-size: 0.9rem; line-height: 1.5; } .content code { font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace; font-size: 0.9rem; } .content p code { background: #f5f5f5; color: #d73a49; padding: 0.2rem 0.4rem; border-radius: 3px; font-size: 0.85rem; } .content a { color: #0066cc; text-decoration: underline; font-weight: bold; } .content a:hover { color: #004499; } .content pre code { background: none; color: inherit; padding: 0; border-radius: 0; } @media (max-width: 768px) { .sky-container { height: 50vh; } .logo { transform: translate(-50%, -50%) scale(0.6); } .content { padding: 1rem; } }