/*CSS for wednesday 06*/
/*
 *
 * CSS units    px  pixels                              syntax: 20px
 *              in  inches                                      10in
 *              cm  centemiteres                                41cm
 *
 *
 *              em  1em is === def font size                    21em
 *              %   w/ rel to width of parent element           5%
 * 

#id -------- javascript/css     uniqe
.class ----- javascript/css     group of elements
 *
 *
 *
 * */


.red{color:red;}
.rightalign {text-align: right;}
#maintitle {text-align: center;}

h1, h2, h3 { /*apply rules to h1, h2 and h3*/  }

p a {/*for all <a> in a <p> style the <a> in this way*/}

p{
    font-family: "Arial", Helvetica, serif;
    font-size: 16px;
    /* letter-spacing: 10px;*/
    word-spacing: 10px;
    text-decoration: underline overline line-through;
    line-height: 2;
    text-transform: capitalize;
    text-indent: 20px;
    text-shadow: -1px -1px 4px black;
}






ul {
    list-style-type: square;
}
ol {
    list-style-type: lower-alpha;
}



















