JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html lang="ru">
<head>
	<title>Иван Минаев - официальный сайт</title>
	<style type="text/css">
		html, body {
				height: 100%;
				display: flex;
				justify-content: center;
				align-items: center;
				flex-direction: column;
				font-family: sans-serif;
		}
		h1 {
			color: blue;
		}
		h2 {
			color: yellow;
		}
	</style>
</head>
<body>
	<h1>Иван Минаев</h1>
	<h2>Музыкант</h2>
</body>
</html>