Pastel Cloud Error - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Pastel Cloud Error</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; font-family: 'Comic Sans MS', sans-serif; background: linear-gradient(to top, #a1c4fd 0%, #c2e9fb 100%); } .cloud-container { text-align: center; } .cloud-icon { font-size: 5em; color: white; margin-bottom: 20px; } .error-message { background: white; padding: 20px 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); display: inline-block; animation: float 3s infinite; } .error-message h1 { font-size: 2em; margin: 0; color: #ff6b6b; } .error-message p { font-size: 1em; color: #333; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } </style> </head> <body> <div class="cloud-container"> <div class="cloud-icon">☁️</div> <div class="error-message"> <h1>Error 404</h1> <p>Sorry, the page you are looking for is lost in the clouds.</p> </div> </div> </body> </html>