/* Colors:
#0a3d61 (deep teal/navy)
#1f8fff (electric blue)
#00ccc9 (aqua)
#6b8acc (periwinkle)
#f8a5c2 (soft pink)
*/

body {
  background-color: #0a3d61;
  color: #f8f8f8;
  font-family: Georgia, serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 2em auto;
  padding: 1.5em;
  background: #1f8fff;
  border: 3px solid #00ccc9;
  box-shadow: 6px 6px 0 #6b8acc;
  color: #0a3d61;
}

header h1 {
  font-family: "Courier New", monospace;
  text-align: center;
  color: #0a3d61;
  margin-bottom: 0.3em;
}

nav {
  text-align: center;
  margin-bottom: 2em;
}

a {
  color: #f8a5c2;
  text-decoration: underline;
}

a:hover {
  background: #00ccc9;
  color: #0a3d61;
  text-decoration: none;
  padding: 0 0.2em;
}