Future Ready - 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>Future Ready</title> <style> body { margin: 0; font-family: 'Arial', sans-serif; background-color: #e0f7fa; display: flex; justify-content: center; align-items: center; height: 100vh; } .text-background-container { position: relative; width: 85%; max-width: 800px; height: 350px; margin: 20px auto; overflow: hidden; border-radius: 20px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); transition: transform 0.5s ease; } .text-background-container:hover { transform: rotate(1deg) scale(1.08); } .text-background-container img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.8) contrast(1.2); transition: filter 0.5s ease; } .text-background-container:hover img { filter: grayscale(0) contrast(1.5); } .text-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; text-align: center; font-size: 2.5em; font-weight: 800; text-transform: uppercase; line-height: 1.2; text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4); z-index: 2; animation: zoomIn 1.3s ease-in-out; } @keyframes zoomIn { 0% { opacity: 0; transform: translate(-50%, -60%) scale(0.8); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } } </style> </head> <body> <div class="text-background-container"> <img src="https://via.placeholder.com/800x350.png?text=Future+Ready" alt="Future Ready"> <div class="text-content"> Future Ready </div> </div> </body> </html>