/* added styling for all the elements inside of the body tag */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: ivory;
}

/* added style to the nav */
nav {
  border-bottom: 2px solid #0056b3;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* added style to the anchor tag */
a {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

/* if the anchor tag is hovered by a mouse, it changes style */
a:hover {
  /* added underline */
  text-decoration: underline;
  color: #8311b0;
}

/* added style to the section */
section {
  background: white;
  padding: 20px;
  border-radius: 8px;
  /* added box box-shadow */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
