body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background-color: #050000;
  color: #c84646;
}

/* Header */
header {
  background: #b70404;
  color: #000000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #e1e1e1;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

#banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery img {
  border-radius: 8px;
  width: 300px;
  height: 200px;
  object-fit: cover;
}

/* Footer */
footer {
  background: #222;
  color: #ac2121;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

footer a {
  color: hsl(0, 72%, 45%);
}