/* 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-color: #99cccc;
  background-image: url("DCHbackgroundV2.jpg");
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  


}




.container {
  width: 760px;
  margin: 20px auto;
  background-color: #fff8dc;
  border: 3px solid #003366;
  outline: 2px solid #ffffff;
  padding: 12px;
}

header {
  background-color: #cceeff;
  border: 2px solid #003366;
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
}

header h1 {
  margin: 0;
  font-size: 36px;
  color: #003366;
}

header p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #333333;
}
nav {
  background: #003366;
background: linear-gradient(to bottom, #003366 0%, #2182C2 50%, #003366 100%);;
  padding: 6px;
  margin-bottom: 15px;
  text-align: center;
}

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

nav a:hover {
  background-color: #ffff99;
  color: #000000;
}
#journal h3 {
  border-bottom: 2px solid #003366;
  padding-bottom: 4px;
  margin-top: 20px;
}

#journal article {
  border-top: 1px dotted #003366;
  padding-top: 8px;
  margin-top: 8px;
}
#journal h4 {
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #003366;
}

footer {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}
