<!--
backround color: make the page look better
font-family: changes the font 
font-weight: tells how bold the text looks
color: color of text
border-bottom: changes the look of the underline
font-size: changes the size of the font
-->
body {
background-color: lime;
font-family: Verdana, Geneva, Arial, sans-serif;
}
}
h1, h2 {
font-weight: normal;
color: #cc6600;
border-bottom: thin dotted #888888;
h1 {
font-size: 170%;
}
h2 {
font-size: 130%;
background-color: lime;
}




