| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>Microduck</title> | |
| <!-- Anton: the landing's brutal print display voice (FancyTitle / | |
| ComicButton on the pollen-website Microduck pages). --> | |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | |
| <link | |
| href="https://fonts.googleapis.com/css2?family=Anton&display=swap" | |
| rel="stylesheet" | |
| /> | |
| <style> | |
| :root { | |
| --ink: #08080c; | |
| } | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| html, body { height: 100%; } | |
| body { background: var(--ink); overflow: hidden; } | |
| #root { height: 100%; } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="root"></div> | |
| <script type="module" src="/src/main.jsx"></script> | |
| </body> | |
| </html> | |