/* 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 {
  margin: 0;
  padding: 0;
  background-color: black;
  background-image: url("https://blob.gifcities.org/gifcities/5WL6Z43RFIVZ2P7J4TRDRIGLKLNQMVBE.gif");
  color: yellow;
  font-family: "Comic Sans MS", Verdana, sans-serif;
  text-align: center;
}

a {
  color: yellow;
  text-decoration: underline;
}

a:hover {
  color: purple;
}

.container {
  width: 760px;
  margin: 20px auto;
  background-color: #12001f;
  border: 4px ridge purple;
  padding: 10px;
}

.header {
  background: linear-gradient(to right, black, purple);
  border: 3px groove yellow;
  padding: 10px;
  margin-bottom: 15px;
}

.header h1 {
  margin: 0;
  color: yellow;
  text-shadow: 2px 2px purple;
}

.nav {
  background-color: black;
  border: 2px dashed yellow;
  padding: 8px;
  margin-bottom: 15px;
}

.nav a {
  margin: 0 10px;
  font-weight: bold;
}

.section {
  background-color: black;
  border: 3px double purple;
  margin-bottom: 20px;
  padding: 10px;
}

.section h2 {
  margin-top: 0;
  background-color: purple;
  color: yellow;
  padding: 5px;
  border: 2px outset yellow;
}

.footer {
  font-size: 12px;
  color: yellow;
  border-top: 1px solid purple;
  padding-top: 10px;
}
