/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #1a1f24;
  color: #e3e8ee;
  height: 100%;
  position: relative;
  line-height: 1.6;
}

/* Optional background texture */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('diy-paper-texture.jpg') repeat;
  opacity: 0.05;
  z-index: 0;
}

/* Main container */
.container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Push logo ~25% down the page */
.logo-section {
  margin-top: 25vh;
  margin-bottom: 3rem;
  text-align: center;
}

.logo {
  max-width: 500px;
  width: 80%;
  height: auto;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

/* Navigation Links */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  color: #cfd6dd;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-left: 2px solid #3a444d;
  background-color: rgba(255, 255, 255, 0.02);
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.resources-link {
  font-style: italic;
  font-size: 1.1rem;
}

/* Footer */
footer {
  margin-top: auto;
  text-align: center;
  font-size: 0.85rem;
  color: #868e96;
  padding: 2rem 0 1rem;
}