<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>La página que está buscando se ha movido o no existe</title>
    <style>
        /* Just some nice colors */
        body {
            font-family: sans-serif;
            font-size: 16px;
            color: #66665E;
            margin: 0;
        }

        /* Vertical centering: make div as large as viewport and use table layout */
        .container {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            display: flex;
            height: 100vh;
        }

        p {
            display: table-cell;
            vertical-align: middle;
            text-align: center
        }

        /* Horizontal centering of image: set left & right margins to 'auto' */
        img.displayed {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 1em auto
        }

        body, html {
            height: 100%;
            margin: 0;
            padding: 0
        }
       
    </style>
</head>
<body>
    <div class=container>
        <p>
            Upsss. No hemos encontrado la página que estás buscando.
            <img alt="No existe" class=displayed src="https://s.resultadodelaloteria.com/img/404.png" /> 
            
            <a href="/">
                <img alt="Resultado de la Lotería" class=displayed src="https://s.resultadodelaloteria.com/img/logo_publisher.png" />
            </a>
    </div>
</body>
</html>