<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Night's Watch</title>
<style>
body {
margin: 0;
font-family: 'Georgia', serif;
color: white;
}
.hero {
position: relative;
background-image: url('https://i.postimg.cc/1tJhpW68/1-4782402a.png');
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.overlay {
background-color: rgba(0, 0, 0, 0.6);
padding: 40px;
border-radius: 10px;
max-width: 800px;
}
h1 {
font-size: 3em;
margin-bottom: 10px;
}
h2 {
font-size: 1.5em;
font-style: italic;
margin-bottom: 30px;
}
p, ul {
font-size: 1.1em;
line-height: 1.6;
text-align: left;
}
ul {
padding-left: 20px;
}
</style>
</head>
<body>
<div class="hero">
<div class="overlay">
<h1>🛡️ The Night's Watch 🛡️</h1>
<h2>"Night gathers, and now my watch begins."</h2>
<p><strong>⚔️ About Us</strong><br>
We are the sworn brothers of the Night's Watch. We stand guard at the Wall, defending the realms of men from the threats beyond. Loyalty, honor, and vigilance define us.</p>
<p><strong>🌌 Alliance Theme</strong><br>
Inspired by the legendary Night's Watch from <em>Game of Thrones</em>, our alliance embodies the spirit of sacrifice and protection.</p>
<p><strong>🧱 Structure & Ranks</strong></p>
<ul>
<li><strong>Lord Commander</strong> – Supreme leader of the Watch</li>
<li><strong>First Ranger</strong> – Head of military operations</li>
<li><strong>Maester</strong> – Oversees diplomacy and intelligence</li>
<li><strong>Stewards</strong> – Handle internal affairs and recruitment</li>
<li><strong>Rangers</strong> – Active members and defenders of the alliance</li>
</ul>
<p><strong>🕯️ Treaties & Diplomacy</strong><br>
We honor our pacts and defend our allies with unwavering resolve.</p>
<p><strong>🐺 Recruitment</strong><br>
We welcome all who are willing to take the black.</p>
<p><strong>🌨️ Alliance Motto</strong><br>
<em>"The sword in the darkness. The watcher on the walls. The fire that burns against the cold."</em></p>
</div>
</div>
</body>
</html>