Innovative Solutions - 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>Innovative Solutions</title> <style> body { margin: 0; font-family: 'Arial', sans-serif; background-color: #f5f5f5; display: flex; justify-content: center; align-items: center; height: 100vh; } .text-background-container { position: relative; width: 90%; max-width: 800px; height: 340px; margin: 20px auto; overflow: hidden; border-radius: 20px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); transition: transform 0.4s ease; } .text-background-container:hover { transform: scale(1.05) rotate(-2deg); } .text-background-container img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) saturate(1.2); transition: filter 0.4s ease; } .text-background-container:hover img { filter: brightness(1.1) saturate(1.5); } .text-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; text-align: center; font-size: 2.4em; font-weight: 700; text-transform: uppercase; line-height: 1.3; text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5); z-index: 2; animation: fadeInZoom 1.2s ease-in-out; } @keyframes fadeInZoom { 0% { opacity: 0; transform: translate(-50%, -60%) scale(0.9); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } } </style> </head> <body> <div class="text-background-container"> <img src="https://via.placeholder.com/800x340.png?text=Innovative+Solutions" alt="Innovative Solutions"> <div class="text-content"> Innovative Solutions </div> </div> </body> </html>