/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #b22222;
  padding: 10px 20px;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: url('https://media.discordapp.net/attachments/1116431422056566807/1408640818914267207/218_20210805042240_1.png?ex=68cac73e&is=68c975be&hm=66660f6fa9eec0702e2829335e7404e9e2fc8afd39e5b1755e6379f2cbc8f59a&=&format=webp&quality=lossless') center/cover no-repeat;
  color: white;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

/* Content */
main {
  padding: 20px;
}

h1, h2 {
  color: #ffcc00;
}

.command-list,
.links-list {
  list-style: none;
  padding: 0;
}

.command-list li,
.links-list li {
  background: #1e1e1e;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #222;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 0.9em;
}
