<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>StrafesNET</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { color: white; overflow: hidden; height: 100vh; } .video-container { position: fixed; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; z-index: -100; } #video-background { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translateX(-50%) translateY(-50%); filter: blur(8px) brightness(40%); } .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: -99; } .content { position: relative; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; z-index: 1; } .logo-container { width: 600px; max-width: 80vw; margin-bottom: 40px; filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.7)); animation: pulse 2s infinite; } .logo { width: 100%; height: auto; max-height: 300px; object-fit: contain; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 40px; width: 100%; max-width: 500px; } .link { padding: 12px 0; background: rgba(0, 0, 0, 0.6); color: #00ffff; text-decoration: none; border: 2px solid #00ffff; border-radius: 4px; font-weight: bold; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .link:hover { background: rgba(0, 255, 255, 0.2); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } .footer { position: absolute; bottom: 20px; font-size: 0.8rem; opacity: 0.7; } </style> </head> <body> <!-- Video Background with Blur --> <div class="video-container"> <video autoplay muted loop id="video-background"> <source src="assets/mh.mp4" type="video/mp4"> Your browser does not support the video tag. </video> </div> <div class="overlay"></div> <!-- Main Content --> <div class="content"> <div class="logo-container"> <img src="assets/logo.png" alt="StrafesNET Logo" class="logo"> </div> <div class="links"> <a href="#" class="link">Submit Map</a> <a href="#" class="link">Browse Maps</a> <a href="#" class="link">Leaderboards</a> <a href="#" class="link">Tutorials</a> <a href="https://wiki.strafes.net" class="link">Wiki</a> <a href="#" class="link">Discord</a> </div> <p class="footer">©2025 StrafesNET. All rights reserved.</p> </div> </body> </html>