/*Basic Style*/
body {
  font-size: 20px;
  padding: 100px;
}

/*Specific Class Styles*/
.title {
  font-family: normal;
  text-align: center;
}

.intro {
  font-size: 25px;
}

.header {
  color: white;
  background-color: black;
  font-family: cursive;
  font-size: 25px;
  padding: 15px;
}

/**Basic Info Lists**/
ul.a {
  list-style-type: square;
  background-color: #FFD3D9;
  font-family: monospace;
}
ul.b {
	list-style-type: circle;
  padding-left: 75px;
}
/*List of Favs Lists*/
ol.c {
  list-style-type: decimal;
  background-color: white;
  font-family: monospace;
}
ol.d {
  list-style-type: upper-roman;
  padding-left: 75px;
}

.me{
  color: black;
  font-family: brush script mt;
  font-size: 30px;
}
.purple {
  color: purple;
}
.pink {
  color: pink;
}
.black {
  color: black;
}

/*Song Link*/
li a {
    background: lightgrey;
    color: darkblue;
}