<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>www.cyolito.com</title>
    <style>
        body {
            font-family: sans-serif;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f0f0f0;
        }
        
        .text {
            font-size: 4rem;
            color: #333;
            animation: animate 3s ease-in-out infinite alternate;
        }

        @keyframes animate {
            0%, 100% {
                text-shadow: 0 0 0 #333;
            }
            50% {
                text-shadow: 0 0 10px rgba(0, 128, 255, 0.8);
            }
        }
    </style>
</head>
<body>
    <h1 class="text">Welcome to www.cyolito.com</h1>
</body>
</html>
