<!doctype html>
<html lang="ru">
<head>
  <meta charset="utf-8">
  <title>dmitriy.dev</title>
   <style>
    body {
      margin: 0;
      background: #0b0e14;
      color: #c9d1d9;
      font-family: monospace;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .terminal {
      max-width: 720px;
      width: 100%;
      padding: 2rem;
      border: 1px solid #1f2937;
      box-shadow: 0 0 40px rgba(0,0,0,0.5);
    }
    .prompt { color: #58a6ff; }
    .cursor {
      display: inline-block;
      width: 8px;
      background: #c9d1d9;
      margin-left: 2px;
      animation: blink 1s step-start infinite;
    }
    @keyframes blink { 50% { opacity: 0; } }
    .dim { color: #8b949e; }
  </style>
</head>
<body>
  <div class="box">
    <h1>Some kind of Dmitriy</h1>
    <p>site under construction</p>
  </div>

</body>
</html>