/* Remove default spacing and make sizing easier */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set basic styles for the whole page */
body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #2E2E2E;
  padding: 20px;
  line-height: 1.7;
}

/* Style the top header area */
header {
  background-color: #A3D9A5; /* soft green */
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: center;
}

/* Make the main title look nicer */
header h1 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
}

/* Add space below each section */
main section {
  margin-bottom: 30px;
}

/* Make section titles green and use a nice font */
h2 {
  color: #A3D9A5;
  font-family: 'Merriweather', serif;
  margin-bottom: 10px;
}

/* Style the bullet lists */
ul {
  margin-left: 20px;
  list-style-type: disc;
}

/* Make links green and remove underline */
a {
  color: #A3D9A5;
  text-decoration: none;
}

/* Add underline when mouse hovers over a link */
a:hover {
  text-decoration: underline;
}

/* Style the bottom of the page */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}