/* 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: LightPink;
  color: PaleVioletRed;
  font-family: CheekyRabbit;
  text-align: center;
}

@font-face {
  font-family: "CheekyRabbit";
  src: url(fonts/CheekyRabbit.ttf);
}

#navigation {

  list-style-type: none;
  margin: auto 10% 20px 10%;
  padding: 0;
  background-color: MistyRose;
  display: flex;
  justify-content: center;
  border-width: 2px;
  border-color: MediumVioletRed;
  border-radius: 5px;
  border-style: ridge;
}

#navigation li a {
  display: block;
  color: PaleVioletRed;
  font-size: 30px;
  padding: 14px 16px;
  text-decoration: none;
}
  
#navigation li a:hover {
  background-color: LightYellow;
  color: MediumVioletRed;
}


#main-content {
  font-size: 25px;
  margin: auto 10% auto 10%;
  background-color: MistyRose;
  border-width: 2px;
  border-color: MediumVioletRed;
  border-radius: 5px;
  border-style: ridge;
}

/*#list {
  text-align: left;
  position: relative;
  left: 35%;
}*/

#list {
  text-align: left;
  margin: 0 auto;
  width: fit-content; /* keeps it snug to its content */
}