/* Base layout */
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
}

/* Main container */
.container {
  max-width: 800px;
  margin: 2rem auto;
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.15);
}

/* Header text */
h1 {
  text-align: center;
  color: #ff7a00;
}

/* Resource links */
ul.resources {
  list-style-type: none;
  padding: 0;
}

ul.resources li {
  margin: 1rem 0;
}

ul.resources li a {
  color: #ffa94d;
  text-decoration: none;
}

ul.resources li a:hover {
  text-decoration: underline;
  color: #ffc680;
}

/* Navigation bar */
.main-nav {
  background-color: #000;
  padding: 1rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.nav-list li a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: bold;
}

.nav-list li a:hover {
  color: #ffc680;
  text-decoration: underline;
}

/* Member login button */
.login-button {
  display: block;
  width: max-content;
  margin: 2rem auto;
  padding: 0.75rem 1.5rem;
  background-color: #ff7a00;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.login-button:hover {
  background-color: #ffa94d;
  color: #000;
}

/* Footer link */
.logout {
  margin-top: 2rem;
  text-align: center;
}

.logout a {
  color: #cccccc;
  text-decoration: none;
}

.logout a:hover {
  color: #ffffff;
}

/* Responsive nav */
@media (max-width: 600px) {
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
}
.about img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.about p {
	text-align: center;
}
