:root {
                color-scheme: dark;
            }

            * {
                box-sizing: border-box;
            }

            body {
                margin: 0;
                padding: 2rem;
                font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
                background-color: #000;
                color: #fff;
                line-height: 1.5;
            }

            a {
                color: #4da3ff;
                text-decoration: none;
            }

            a:hover {
                text-decoration: underline;
            }

            h1, h2, h3 {
                margin-top: 0;
            }

            p {
                max-width: 60ch;
            }