<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Mayhem | Turtle WoW</title>
<style>
body {
margin: 0;
font-family: "Trebuchet MS", Arial, sans-serif;
background: radial-gradient(circle at top, #2b1a0f, #0e0b09 70%);
color: #f2e6c9;
}


header {
text-align: center;
padding: 2rem 1rem 1rem;
}


header h1 {
font-size: 3rem;
letter-spacing: 2px;
margin-bottom: 0.5rem;
color: #f4c96f;
text-shadow: 0 0 12px rgba(244, 201, 111, 0.5);
}


header p {
margin: 0.25rem 0;
font-size: 1.1rem;
color: #d6c29a;
}


.banner {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}


.banner img {
width: 100%;
border-radius: 16px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
border: 3px solid #3a2a1b;
}


.content {
max-width: 1000px;
margin: 3rem auto;
padding: 0 1.5rem;
text-align: center;
}


.content h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: #f4c96f;
}


.content p {
line-height: 1.6;
font-size: 1.05rem;
color: #e8dcc0;
}


.discord-button {
display: inline-block;
margin-top: 2rem;
padding: 1rem 2.5rem;
font-size: 1.2rem;
font-weight: bold;
text-decoration: none;
color: #ffffff;
background: linear-gradient(135deg, #5865F2, #404EED);
border-radius: 50px;
box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.discord-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
}


footer {
text-align: center;
padding: 2rem 1rem;
font-size: 0.9rem;
color: #b9aa87;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 4rem;
}
</style>
</head>
<body>
<header>
<h1>Project Mayhem</h1>
<p><strong>Server:</strong> Turtle WoW</p>
<p><strong>Realm:</strong> Nordanaar</p>
</header>


<section class="banner">
<!-- Place ProjectMayhem.png in the same folder as this HTML file -->
<img src="ProjectMayhem.png" alt="Project Mayhem Guild Banner" />
</section>


<section class="content">
<h2>Who We Are</h2>
<p>
Project Mayhem is a tight‑knit guild forged in chaos and camaraderie.
From bear‑form frontlines to arcane frost and forbidden fel magic, we
tackle Turtle WoW with style, teamwork, and just the right amount of mayhem.
</p>


<a class="discord-button" href="https://discord.gg/pR9bt7y7" target="_blank">
Join Us on Discord
</a>
</section>


<footer>
© Project Mayhem
</footer>
</body>
</html>



