/* 
Example CSS Selector
selector {
	property: value;
  property2: value;
  property3: value;
}

#id-name {
	css goes here
}

.class-name {
	css goes here
}
*/
body {
	background-color:#f8fcd6; 
}
#title {
	color: #dd9037;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-decoration: underline yellow wavy 7px;
  text-align: center;
}
h2 {
	text-decoration: overline;
  background-color: blue;
  color: white;
  padding: 30px 15px 20px 15px;
}
.uglyBlue {
	font-family: "Comic Sans MS";
  font-size: 1.1em;
  color: rgb(131, 133, 252);
  /* color: rgb(red value, green value, blue value) */
}
li {
	font-family: "Impact";
  font-style: italic;
  text-decoration: line-through;
}
strong {
	background-color: red;
}
div {
	background-color: #f3a4fc;
  color: #fffa05;
  width: 200px;
  border: dotted #61d877 10px;
  padding: 10px;
  margin-bottom: 1em;
}