File size: 26,457 Bytes
b2969a4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MAUSA - Mars Aeronautics and Space Administration</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
.gradient-text {
background: linear-gradient(90deg, #ff4d4d, #f9cb28);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body class="bg-black text-white font-sans">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-black bg-opacity-90 backdrop-blur-md">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-red-600 rounded-full flex items-center justify-center">
<i class="fas fa-planet-moon text-white text-xl"></i>
</div>
<span class="text-2xl font-bold gradient-text">MAUSA</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#missions" class="hover:text-red-400 transition">Missions</a>
<a href="#gallery" class="hover:text-red-400 transition">Gallery</a>
<a href="#research" class="hover:text-red-400 transition">Research</a>
<a href="#about" class="hover:text-red-400 transition">About</a>
<a href="#contact" class="hover:text-red-400 transition">Contact</a>
</div>
<button class="md:hidden text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="min-h-screen flex items-center justify-center parallax" style="background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80');">
<div class="container mx-auto px-6 text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6">
<span class="gradient-text">Exploring</span> <span class="text-white">the Red Planet</span>
</h1>
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">
MAUSA is leading humanity's journey to Mars with groundbreaking missions and research.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="px-8 py-3 bg-red-600 hover:bg-red-700 rounded-full font-bold transition">
Latest Updates
</button>
<button class="px-8 py-3 bg-transparent border-2 border-white hover:bg-white hover:text-black rounded-full font-bold transition">
Watch Live
</button>
</div>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2">
<i class="fas fa-chevron-down text-2xl animate-bounce"></i>
</div>
</section>
<!-- Mission Highlights -->
<section id="missions" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 text-center">
Our <span class="gradient-text">Missions</span>
</h2>
<div class="grid md:grid-cols-3 gap-10">
<div class="bg-gray-800 rounded-xl p-8 hover:transform hover:scale-105 transition duration-500">
<div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-rocket text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Mars 2027</h3>
<p class="text-gray-300">First crewed mission to Mars orbit, testing long-duration spaceflight capabilities.</p>
</div>
<div class="bg-gray-800 rounded-xl p-8 hover:transform hover:scale-105 transition duration-500">
<div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-robot text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Red Rover</h3>
<p class="text-gray-300">Advanced robotic exploration of the Valles Marineris canyon system.</p>
</div>
<div class="bg-gray-800 rounded-xl p-8 hover:transform hover:scale-105 transition duration-500">
<div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-vial text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Sample Return</h3>
<p class="text-gray-300">First Mars sample return mission, bringing Martian soil back to Earth.</p>
</div>
</div>
</div>
</section>
<!-- Countdown to Next Launch -->
<section class="py-20 bg-gradient-to-r from-red-900 to-black">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl font-bold mb-6">Next Launch: Mars 2027</h2>
<div class="flex justify-center gap-4 mb-10">
<div class="bg-black bg-opacity-50 rounded-lg p-4 w-24">
<div class="text-3xl font-bold" id="days">00</div>
<div class="text-sm">Days</div>
</div>
<div class="bg-black bg-opacity-50 rounded-lg p-4 w-24">
<div class="text-3xl font-bold" id="hours">00</div>
<div class="text-sm">Hours</div>
</div>
<div class="bg-black bg-opacity-50 rounded-lg p-4 w-24">
<div class="text-3xl font-bold" id="minutes">00</div>
<div class="text-sm">Minutes</div>
</div>
<div class="bg-black bg-opacity-50 rounded-lg p-4 w-24">
<div class="text-3xl font-bold" id="seconds">00</div>
<div class="text-sm">Seconds</div>
</div>
</div>
<button class="px-8 py-3 bg-red-600 hover:bg-red-700 rounded-full font-bold transition">
Watch Live Coverage
</button>
</div>
</section>
<!-- Mars Gallery -->
<section id="gallery" class="py-20 bg-black">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 text-center">
Mars <span class="gradient-text">Gallery</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="relative group overflow-hidden rounded-xl h-64">
<img src="https://images.unsplash.com/photo-1454789548928-9efd52dc4031?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=880&q=80"
alt="Mars Surface" class="w-full h-full object-cover group-hover:scale-110 transition duration-500">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<span class="text-white text-xl font-bold">Olympus Mons</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl h-64">
<img src="https://images.unsplash.com/photo-1614728894747-a83421e2b9c9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80"
alt="Mars Rover" class="w-full h-full object-cover group-hover:scale-110 transition duration-500">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<span class="text-white text-xl font-bold">MAUSA Rover</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl h-64">
<img src="https://images.unsplash.com/photo-1506318137071-a8e0638004b4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=770&q=80"
alt="Mars Sunset" class="w-full h-full object-cover group-hover:scale-110 transition duration-500">
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<span class="text-white text-xl font-bold">Martian Sunset</span>
</div>
</div>
</div>
<div class="text-center mt-10">
<button class="px-8 py-3 bg-transparent border-2 border-white hover:bg-white hover:text-black rounded-full font-bold transition">
View Full Gallery
</button>
</div>
</div>
</section>
<!-- Research Section -->
<section id="research" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 text-center">
Cutting-edge <span class="gradient-text">Research</span>
</h2>
<div class="flex flex-col lg:flex-row items-center gap-10 mb-20">
<div class="lg:w-1/2">
<img src="https://images.unsplash.com/photo-1603468620905-8de7d86b781e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=876&q=80"
alt="Mars Research" class="rounded-xl w-full h-auto">
</div>
<div class="lg:w-1/2">
<h3 class="text-3xl font-bold mb-6">Martian Agriculture</h3>
<p class="text-gray-300 mb-6">Our scientists are developing revolutionary techniques to grow food in Martian soil using genetically modified plants that can thrive in the harsh conditions of Mars.</p>
<ul class="space-y-3 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-red-500 mr-2"></i>
<span>Low-pressure greenhouse systems</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-red-500 mr-2"></i>
<span>Radiation-resistant crops</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-red-500 mr-2"></i>
<span>Water-efficient hydroponics</span>
</li>
</ul>
<button class="px-6 py-2 bg-red-600 hover:bg-red-700 rounded-full font-bold transition">
Read Research Paper
</button>
</div>
</div>
<div class="flex flex-col lg:flex-row-reverse items-center gap-10">
<div class="lg:w-1/2">
<img src="https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80"
alt="Mars Habitat" class="rounded-xl w-full h-auto">
</div>
<div class="lg:w-1/2">
<h3 class="text-3xl font-bold mb-6">Habitat Design</h3>
<p class="text-gray-300 mb-6">MAUSA engineers are creating inflatable, radiation-shielded habitats that can be deployed quickly on the Martian surface, providing safe living spaces for our astronauts.</p>
<div class="bg-gray-800 p-6 rounded-xl mb-6">
<div class="flex justify-between mb-2">
<span>Structural Integrity</span>
<span>98%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-red-600 h-2.5 rounded-full" style="width: 98%"></div>
</div>
</div>
<div class="bg-gray-800 p-6 rounded-xl">
<div class="flex justify-between mb-2">
<span>Radiation Protection</span>
<span>95%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-red-600 h-2.5 rounded-full" style="width: 95%"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About MAUSA -->
<section id="about" class="py-20 bg-black">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl font-bold mb-6">
About <span class="gradient-text">MAUSA</span>
</h2>
<p class="max-w-4xl mx-auto text-xl mb-16">
The Mars Aeronautics and Space Administration (MAUSA) is the leading organization dedicated to the exploration and eventual colonization of Mars. Founded in 2020, we bring together the brightest minds from around the world to make humanity's interplanetary future a reality.
</p>
<div class="grid md:grid-cols-4 gap-8">
<div class="p-6 bg-gray-900 rounded-xl">
<div class="text-5xl font-bold gradient-text mb-2">7+</div>
<div class="text-gray-300">Active Missions</div>
</div>
<div class="p-6 bg-gray-900 rounded-xl">
<div class="text-5xl font-bold gradient-text mb-2">42</div>
<div class="text-gray-300">Countries Involved</div>
</div>
<div class="p-6 bg-gray-900 rounded-xl">
<div class="text-5xl font-bold gradient-text mb-2">500+</div>
<div class="text-gray-300">Scientists & Engineers</div>
</div>
<div class="p-6 bg-gray-900 rounded-xl">
<div class="text-5xl font-bold gradient-text mb-2">2035</div>
<div class="text-gray-300">First Human Landing</div>
</div>
</div>
</div>
</section>
<!-- Astronaut Recruitment -->
<section class="py-20 bg-gradient-to-b from-red-900 to-black">
<div class="container mx-auto px-6">
<div class="flex flex-col lg:flex-row items-center gap-10">
<div class="lg:w-1/2">
<h2 class="text-4xl font-bold mb-6">
Join Our <span class="gradient-text">Astronaut Corps</span>
</h2>
<p class="text-xl mb-8">
Applications are now open for the next class of MAUSA astronauts who will train for future Mars missions. Do you have what it takes to be among the first humans to walk on Mars?
</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="px-8 py-3 bg-white text-black hover:bg-gray-200 rounded-full font-bold transition">
Apply Now
</button>
<button class="px-8 py-3 bg-transparent border-2 border-white hover:bg-white hover:text-black rounded-full font-bold transition">
Requirements
</button>
</div>
</div>
<div class="lg:w-1/2 relative">
<img src="https://images.unsplash.com/photo-1530878952701-56ad1c41e2a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Astronaut" class="rounded-xl w-full h-auto floating">
<div class="absolute -bottom-5 -right-5 bg-red-600 w-20 h-20 rounded-full flex items-center justify-center">
<i class="fas fa-user-astronaut text-3xl"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 text-center">
Contact <span class="gradient-text">MAUSA</span>
</h2>
<div class="flex flex-col lg:flex-row gap-10">
<div class="lg:w-1/2">
<form class="space-y-6">
<div>
<label for="name" class="block mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500">
</div>
<div>
<label for="email" class="block mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500">
</div>
<div>
<label for="subject" class="block mb-2">Subject</label>
<select id="subject" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500">
<option>General Inquiry</option>
<option>Media Request</option>
<option>Educational Program</option>
<option>Partnership Opportunity</option>
</select>
</div>
<div>
<label for="message" class="block mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500"></textarea>
</div>
<button type="submit" class="px-8 py-3 bg-red-600 hover:bg-red-700 rounded-full font-bold transition w-full">
Send Message
</button>
</form>
</div>
<div class="lg:w-1/2">
<div class="bg-gray-800 p-8 rounded-xl h-full">
<h3 class="text-2xl font-bold mb-6">MAUSA Headquarters</h3>
<div class="space-y-6">
<div class="flex items-start">
<i class="fas fa-map-marker-alt text-red-500 mt-1 mr-4"></i>
<div>
<h4 class="font-bold">Address</h4>
<p class="text-gray-300">1 Martian Way, Cape Canaveral, FL 32920, USA</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-phone-alt text-red-500 mt-1 mr-4"></i>
<div>
<h4 class="font-bold">Phone</h4>
<p class="text-gray-300">+1 (321) 867-5309</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-envelope text-red-500 mt-1 mr-4"></i>
<div>
<h4 class="font-bold">Email</h4>
<p class="text-gray-300">[email protected]</p>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="font-bold mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-red-600 rounded-full flex items-center justify-center transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-red-600 rounded-full flex items-center justify-center transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-red-600 rounded-full flex items-center justify-center transition">
<i class="fab fa-youtube"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-red-600 rounded-full flex items-center justify-center transition">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-10 bg-black border-t border-gray-800">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-6 md:mb-0">
<div class="w-8 h-8 bg-red-600 rounded-full flex items-center justify-center">
<i class="fas fa-planet-moon text-white"></i>
</div>
<span class="text-xl font-bold gradient-text">MAUSA</span>
</div>
<div class="flex flex-wrap justify-center gap-6 mb-6 md:mb-0">
<a href="#" class="hover:text-red-400 transition">Privacy Policy</a>
<a href="#" class="hover:text-red-400 transition">Terms of Service</a>
<a href="#" class="hover:text-red-400 transition">Careers</a>
<a href="#" class="hover:text-red-400 transition">FAQ</a>
</div>
<div class="text-gray-500 text-sm">
© 2023 Mars Aeronautics and Space Administration. All rights reserved.
</div>
</div>
</div>
</footer>
<script>
// Countdown Timer
function updateCountdown() {
const now = new Date();
const launchDate = new Date('June 1, 2027 12:00:00');
const diff = launchDate - now;
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((diff % (1000 * 60)) / 1000);
document.getElementById('days').textContent = days.toString().padStart(2, '0');
document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
}
setInterval(updateCountdown, 1000);
updateCountdown();
// Mobile menu toggle
document.querySelector('.md\\:hidden').addEventListener('click', function() {
const menu = document.querySelector('.md\\:flex');
menu.classList.toggle('hidden');
menu.classList.toggle('flex');
menu.classList.toggle('flex-col');
menu.classList.toggle('absolute');
menu.classList.toggle('top-16');
menu.classList.toggle('right-6');
menu.classList.toggle('bg-gray-900');
menu.classList.toggle('p-4');
menu.classList.toggle('rounded-lg');
menu.classList.toggle('space-y-4');
menu.classList.toggle('space-x-8');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Tarsh9/mausa" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |