<!DOCTYPE html>

<html lang="es">

<head>

    <meta charset="UTF-8">

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

    <title>Mi Sitio en Cloudflare</title>

    <style>

        /* Estilos sencillos y modernos */

        body {

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            line-height: 1.6;

            color: #333;

            max-width: 800px;

            margin: 0 auto;

            padding: 2rem;

            background-color: #f4f7f6;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            min-height: 100vh;

        }


        .card {

            background: white;

            padding: 2rem;

            border-radius: 12px;

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

            text-align: center;

            width: 100%;

        }


        h1 {

            color: #f38020; /* Color naranja Cloudflare */

            margin-bottom: 0.5rem;

        }


        p {

            font-size: 1.1rem;

            color: #666;

        }


        .badge {

            display: inline-block;

            background: #eef2ff;

            color: #4f46e5;

            padding: 5px 15px;

            border-radius: 20px;

            font-weight: bold;

            font-size: 0.8rem;

            margin-bottom: 1rem;

        }


        .button {

            display: inline-block;

            margin-top: 1.5rem;

            padding: 10px 25px;

            background-color: #f38020;

            color: white;

            text-decoration: none;

            border-radius: 5px;

            transition: background 0.3s;

        }


        .button:hover {

            background-color: #d9731c;

        }

    </style>

</head>

<body>


    <div class="card">

        <span class="badge">Sitio Estático Live!</span>

        <h1>¡Hola desde Cloudflare!</h1>

        <p>Este es mi primer sitio web desplegado de forma ultra sencilla.</p>

        <p>Rápido, seguro y servido desde el "edge" de la red.</p>

        

        <a href="#" class="button">Saber más</a>

    </div>


</body>

</html>