@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Zen+Dots&display=swap');

li {
  margin-bottom: 12px; 
}

/* Optional: Remove the margin from the very last item to prevent extra bottom gap */
li:last-child {
  margin-bottom: 0;
}

/* Change the fonts here! */

body {
  width: 90%;
  margin: auto;
  background-color: rgb(245, 239, 232);
}

h1 {
	font-family: "Verdana";
	font-size: 36px;
}

h2 {
	font-family: "Verdana";
}

p, a, li {
	font-family: "Garamond";
	font-size: 24px;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #13b963;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #108f5a;
  color: white;
}