Visionary Leadership - 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>Visionary Leadership</title> <style> body { margin: 0; font-family: 'Arial', sans-serif; background-color: #f3e5f5; display: flex; justify-content: center; align-items: center; height: 100vh; } .text-background-container { position: relative; width: 90%; max-width: 750px; height: 330px; margin: 20px auto; overflow: hidden; border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); transition: transform 0.5s ease; } .text-background-container:hover { transform: scale(1.07); } .text-background-container img { width: 100%; height: 100%; object-fit: cover; filter: hue-rotate(30deg) brightness(0.9); transition: filter 0.5s ease; } .text-background-container:hover img { filter: hue-rotate(0deg) brightness(1.2); } .text-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #333; text-align: center; font-size: 2.3em; font-weight: 700; text-transform: uppercase; line-height: 1.3; text-shadow: 0 2px 6px rgba(255, 255, 255, 0.6); z-index: 2; animation: fadeIn 1.4s ease-in-out; } @keyframes fadeIn { 0% { opacity: 0; transform: translate(-50%, -60%); } 100% { opacity: 1; transform: translate(-50%, -50%); } } </style> </head> <body> <div class="text-background-container"> <img src="https://via.placeholder.com/750x330.png?text=Visionary+Leadership" alt="Visionary Leadership"> <div class="text-content"> Visionary Leadership </div> </div> </body> </html>