<!DOCTYPE html>

<html lang="ru">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Сайт в разработке</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            background-color: #f4f4f4;

            color: #333;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            margin: 0;

            text-align: center;

        }

        .container {

            max-width: 600px;

            padding: 20px;

            background-color: #fff;

            border-radius: 10px;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }

        h1 {

            font-size: 2.5em;

            margin-bottom: 20px;

        }

        p {

            font-size: 1.2em;

            margin-bottom: 20px;

        }

        .contact {

            font-size: 1em;

            color: #777;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Сайт Root в разработке</h1>

        <p>Мы работаем над созданием нового сайта. Пожалуйста, зайдите позже!</p>

        <p class="contact">По вопросам обращайтесь: <a href="mailto:info@example.com">info@example.com</a></p>

    </div>

</body>

</html>