/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: url('https://i.pinimg.com/originals/78/86/02/788602f9cc0e6da15a99a9cb5750d4bf.gif') repeat; 
  font-family: 'Comic Sans MS', 'Verdana', sans-serif;
  color: #fff;
  text-align: center;
  cursor: url("https://downloads.totallyfreecursors.com/thumbnails/shuttle1.gif"), auto;
}

#container {
  width: 750px;
  margin: 20px auto;
  background: rgba(0, 0, 40, 0.8); /* semi-transparent dark blue */
  border: 3px solid #ffccff;
  padding: 20px;
  box-shadow: 0 0 15px pink;
  border-radius: 15px;
}

header h1 {
  font-size: 2.5em;
  color: #ff99ff;
  text-shadow: 2px 2px 5px #000;
}

nav {
  margin: 15px 0;
}

nav a {
  color: #66ffff;
  font-weight: bold;
  text-decoration: none;
}

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

h2 {
  color: #ffccff;
  text-shadow: 1px 1px 3px #000;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 8px 0;
}

footer {
  font-size: 0.8em;
  margin-top: 20px;
  color: #ccccff;
}