Entradas

Bienvenida EL TEMPLO

  <!DOCTYPE html> <html lang="es"> <head>   <meta charset="UTF-8">   <title>Bienvenida al Templo</title>   <style>     body {       margin: 0;       overflow: hidden;       background: linear-gradient(to top, #000000, #1a1a1a);       height: 100vh;       display: flex;       justify-content: center;       align-items: center;       position: relative;       font-family: 'Georgia', serif;       color: white;     }     .nubes {       position: absolute;       bottom: 0;       width: 100%;       height: 50%;       background: url('https://i.imgur.com/VyzfIUm.png') repeat-x;       animation: moverNubes 60s linear infinite;     ...