<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hello World</title>
    <link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&display=swap" rel="stylesheet">
    <style>
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            font-family: 'EB Garamond', 'Times New Roman', Georgia, serif;
        }

        h1 {
            font-size: 4rem;
            font-weight: 400;
            color: #1a1a1a;
            margin: 0;
            letter-spacing: -0.02em;
        }
    </style>
</head>
<body>
    <h1>Hello, world</h1>
</body>
</html>
