<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Vader</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap">
<style>
body {
font-family: 'Press Start 2P', cursive;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
text-align: center;
}
header {
background-color: #111;
padding: 20px;
}
h1 {
font-size: 2.5em;
margin: 0;
}
.content {
padding: 20px;
}
.game-description {
font-size: 1.2em;
line-height: 1.5;
max-width: 800px;
margin: 0 auto;
}
footer {
background-color: #111;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Project Vader</h1>
</header>
<div class="content">
<h2>Welcome to Project Vader!</h2>
<p class="game-description">
Dive into the immersive world of <strong>Project Vader</strong>, a cutting-edge VR experience crafted specifically for the Oculus Quest series. In Project Vader, you'll embark on an epic journey through stunning virtual landscapes, facing challenges and adventures that push the boundaries of virtual reality.
</p>
<p class="game-description">
Designed with the Oculus Quest’s advanced capabilities in mind, Project Vader offers a seamless and captivating experience, allowing you to interact with the environment like never before. Whether you're exploring alien worlds or battling fierce enemies, Project Vader promises an unforgettable VR experience.
</p>
</div>
<footer>
<p>© 2024 Project Vader. All rights reserved.</p>
</footer>
</body>
</html>