<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Блог на отдыхе</title>
    <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fb 50%, #dceef5 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            max-width: 600px;
            width: 100%;
            text-align: center;
        }

        .header {
            margin-bottom: 50px;
        }

        .emoji {
            font-size: 120px;
            margin-bottom: 20px;
            display: block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 10px 40px rgba(100, 150, 200, 0.15);
            border: 2px solid rgba(150, 200, 230, 0.3);
            margin-bottom: 30px;
        }

        .card.featured {
            background: linear-gradient(135deg, rgba(240, 250, 255, 1) 0%, rgba(230, 245, 255, 1) 100%);
            border: 2px solid rgba(150, 200, 230, 0.5);
        }

        h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: #2c5aa0;
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: 2px;
            line-height: 1.4;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #4a7ba7;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .divider {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #5ba3d0, transparent);
            margin: 30px auto;
        }

        .link-container {
            margin-top: 30px;
        }

        .link-label {
            font-size: 0.95rem;
            color: #6d9db5;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .link-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #5ba3d0 0%, #4a91b8 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(91, 163, 208, 0.3);
            border: none;
            cursor: pointer;
            font-family: 'Georgia', serif;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .link-button:hover {
            background: linear-gradient(135deg, #4a91b8 0%, #3a7da0 100%);
            box-shadow: 0 10px 30px rgba(91, 163, 208, 0.4);
            transform: translateY(-2px);
        }

        .footer {
            margin-top: 40px;
            font-size: 0.9rem;
            color: #7fa8bf;
        }

        .heart {
            color: #5ba3d0;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        .decorative {
            font-size: 3rem;
            opacity: 0.15;
            position: fixed;
            pointer-events: none;
        }

        .leaf-1 {
            top: 10%;
            left: 5%;
            animation: drift 8s infinite ease-in-out;
        }

        .leaf-2 {
            bottom: 10%;
            right: 5%;
            animation: drift 10s infinite ease-in-out reverse;
        }

        @keyframes drift {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(30px) rotate(5deg);
            }
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }

            .emoji {
                font-size: 80px;
            }

            .card {
                padding: 30px 25px;
            }

            .subtitle {
                font-size: 1rem;
            }

            .link-button {
                font-size: 1rem;
                padding: 12px 30px;
            }
        }
    </style>
</head>
<body>
    <div class="decorative leaf-1">☁️</div>
    <div class="decorative leaf-2">☁️</div>

    <div class="container">
        <div class="header">
        </div>

        <div class="card featured">
            <h1>Здравствуйте!</h1>
            <div class="divider"></div>
            <p class="subtitle">
                Мой уютный бложек отправился на заслуженный отдых.
            </p>
        </div>

        <div class="card">
            <p class="link-label">Найдите меня здесь</p>
            <a href="https://neuropsyholog-noginsk.ru" class="link-button">
                Мой новый сайт
            </a>
            <p style="margin-top: 15px; color: #6d9db5; font-size: 0.9rem;">
                neuropsyholog-noginsk.ru
            </p>
        </div>

        <div class="footer">
            <p>
                Спасибо за ваше внимание <span class="heart">❤️</span>
            </p>
        </div>
    </div>
</body>
</html>

