/* === EXPERT CSS UPGRADE === */

body {
  background-image: url('background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
#container {
  max-width: 800px;
  margin: 20px auto;
  background-color: #0d204a; /* Darker, transparent blue */
  padding: 20px;
  border: 5px solid;
  border-color: #c0c0c0 #585858 #585858 #c0c0c0;
  box-shadow: 10px 10px 8px #000000;
}

.navigation {
  background-color: #666666;
  padding: 10px;
  text-align: center;
  border: 2px solid #c0c0c0;
  margin-bottom: 20px;
}

.navigation a {
  color: #ffff00; /* Bright yellow links */
  text-decoration: none;
  font-weight: bold;
  padding: 0 15px;
}

.navigation a:hover {
  background-color: #ffff00;
  color: #000000;
}

h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-align: center;
  font-size: 50px;
  color: #00ff00; /* Bright Green */
  text-shadow: 3px 3px #000000; /* Sharp Black Drop Shadow */
}

h2 {
  font-family: "Lucida Handwriting", "Brush Script MT", cursive;
  color: #ff0000;
  border-bottom: 2px dashed #c0c0c0;
}

/* Styles for the links page */
ul {
  list-style-type: none; /* Removes default bullets */
  padding: 0;
}

li {
  background-color: #1a3a6d;
  margin: 5px 0;
  padding: 10px;
  border: 1px solid #00ffff;
}

a {
  color: #00ffff; /* Cyan links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}