/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: mediumseagreen;
  color: black;
  font-family: "DejaVu Sans", Verdana, sans-serif;
}

a:link, a:visited {
  color: pink;
  text-decoration: none;
}

a:hover {
  color: purple;
  text-decoration: none;
}

nav ul {
  list-style-type: none;
  position: sticky;
  top: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

nav ul li {
  float: left; 
}

nav ul li a:link, a:visited {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: #111; 
}