/* 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: #fc0398;
  color: white;
  font-family: Courier;
  text-align: center
}

a {
color: #8cfdff;
}

/* navigation panel
background panel */
.topnav {
  background-color: #8cfdff;
  overflow: hidden;
  margin: auto;
  width: 30%;
  border-radius: 10px;
}

/* links inside the navigation bar */
.topnav a {
  float: left;
  color: #fc0398;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* color of links on hover */
.topnav a:hover {
  background-color: #ff8ce2;
  color: white;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #fcba03;
  color: white;
}
