/* Import Merriweather font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

body {
  background-color: #0d1b2a; /* dark navy blue */
  color: #f2f2f2;            /* light text */
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 20px;
  padding: 0;
}

a {
  color: #add8e6; /* light blue links */
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
}

h1, h2, h3 {
  color: #ffffff;
  font-weight: bold;
  margin-top: 1.5em;
}
