
<html lang="ru">
<head>
    <title>CIG</title>
    <style>
        /* Внутренние CSS стили */
        body {
            font-family: Arial, sans-serif;
            background-color: #373737;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .card {
            background-color: #585858;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            text-align: center;
        }
        h1 {
            color: #c2c2c2;
        }
    </style>
</head>
<body>
    <div class="card">
        <h1>This is CIG!</h1>
    </div>
</body>
</html>

