/* CSS for ex3.html */

/*                          css units
 *  px      pixel
 *  in      inches
 *  cm      centimeters
 *
 *  em      lem is=== def font size
 *  %       with relation to width of parent element
 


    #id     javascript/css unique
    .class  javascript/css group of element
 
 */

/*
h1{
    text-align:center;
    color:red;
    text-shadow: -1px -1px 5px gray;
}
*/




.purple{color:purple;}

#maintitle{text-align: center;}

ul{
    list-style-type: square;
    /*list-style-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNlM7N_zcFGd4FAHfk3cv9v0LRJ2kvS5QrBi0UwIu9su1agqSf');*/
}

ol{
    list-style-type: upper-roman;
}

/* nav ul */
nav ul{
        list-style-type: none;
}

nav ul li{ 
        display: inline;
        background-color: lightgray;
        margin: 5px 5px;
        border: solid black 1px;
}



p a{text-decoration: overline;}

p{
    /*font-family:"Arial", Helvetica, Sans-serif;*/
    /*font-family:"Times New Roman", Times, Serif;*/
    font-family:"Courier New", Courier, monospace;
    /*font-family:"Major Mono Display", monospace;*/
    
    font-size:16px;
    font-weight: 100;
    
    /*letter-spacing:10px;*/
    word-spacing:10px;
    line-height:2;
    
    text-decoration:/*line-through*/ underline /*overline*/; /*none*/
    text-transform: capitalize; /*uppercase, lowercase*/
    text-indent: 50px;
    /*text-shadow: -1px -1px 4px black;*/
}
