/* style.css */

/* Early 2000s background, slightly repeating pattern */
body {
  background: url('images/triforce.gif') repeat;
  background-color: black;
  color: #ffffff;
  font-family: "Comic Sans MS", cursive, sans-serif;
  margin: 0;
  padding: 0;
  cursor: url('images/navi_cursor.gif'), auto;
}

/* 2000s style link appearance */
a {
  color: #00ff00;
  text-decoration: none;
}

a:hover {
  color: #ffff00;
  text-decoration: underline;
}

/* Center a main container */
.container {
  width: 800px;
  margin: 0 auto;
  border: 3px double #00ff00;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

/* A fancy heading font color */
h1, h2, h3 {
  color: #ffff00; /* Gold-ish for Zelda vibe */
  text-shadow: 1px 1px 2px #ff0000; /* Slight glowing effect */
}

/* Navigation bar container */
nav {
  margin: 10px 0;
  padding: 5px;
  background-color: #004400;
  border: 2px groove #ffffff;
}

/* Navigation links style */
nav a {
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Example styling for images in the gallery */
.gallery-img {
  width: 200px;
  height: auto;
  border: 2px solid #00ff00;
  margin: 10px;
}

/* Footer */
footer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #00ff00;
}
