JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Kafarzada Vurgun</title>
    <style>
        html {
            height: 100%;
        }
        body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
        }


        h1, h2 {
            font-family: Arial;
        }

        h2 {
            letter-spacing: 10px;
            font-style: italic;
        }

        h1 {
            font-size: 40px;
        }
    </style>
</head>
<body>
    <h1>Kafarzada Vurgun</h1>
    <h2>official site</h2>
</body>
</html>