/* 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 {
  margin: 20px 40px;
  background: mintcream;
  color: black;
  font-family: Monospace;
  min-height: 150dvh;
}

p {
  font-size: large;
  line-height: 1.5;
}

li {
  font-size: large;
  list-style: outside url("catbullet.png");
  align-items: center;
  padding: 5px;
}

.navbar .button-navbar-end {
  text-decoration: none;
  float: right;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.button-navbar-off {
  text-decoration: none;
  background-color: Indigo;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
}

.button-navbar-on {
  text-decoration: none;
  background-color: #E2D1FF;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.button {
  text-decoration: none;
  background-color: #EEEEEE;
  color: #333333;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
}

footer.artist{
  background-color: transparent;
  position: fixed;
  height: auto;
  margin-right: 40px;
  bottom: 0px;
}

footer{
  background-color: #E2D1FF;
  position: fixed;
  height: auto;
  opacity: 0.8; 
  bottom: 0px;
  margin-right: 40px;
}

footer .footer-image{
  width: 100%;
}

.navbar {
  background-color: Indigo;
  color: SeaShell;
  overflow: auto;
  font-weight: bold;
  font-size: large;
  list-style: none;
  width: auto;
  margin-bottom: 20px;
}

.navbar a.end {
  float: right;
  background-color: orange;
}

.navbar a {
  float: left;
  color: SeaShell;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: LightGreen;
}

.navbar a.active {
  background-color: Plum;
}
