/* External CSS file for Path of Light Yoga, class & index html files. */

/* Changing the background to a shade of white, and the text to a shade of blue. In path of light Yoga #5, font-family was added */
body 
{ 
    background-color: #F5F5F5;
    color: #40407A; 
    font-family: Verdana, Arial, sans-serif; 
    
}

/* Changing the background of the text within the header tag to a lighter blue.. almost cyan-ish I think?. 
   Added the background-image & url (that is right flushed & non-repeatable) as Part of Path of Light Yoga #5 */
header 
{ 
    background-color: #80CBC4;
    background-image: url(lilyheader.jpg);
        background-position: right;
        background-repeat: no-repeat;
}

/* Changing the background of the text within the footer tag to the same shade of blue as the header in this file*/
/* Added style,size, and align as part of Path of Light Yoga #5 */
footer 
{ 
    background-color: #80CBC4;
    text-align: center;
    font-style: italic;
    font-size: .80em;
}



/* Adding a "nav", "nav a", "h1 selector", "li", and "dd" as part of Path of Light Yoga #4, along with some elements/attributes within them */
/* Making text in the nav tags bold & center aligned */
nav 
{
    text-align: center;
    font-weight: bold;

}

/* removing text underline by targetting hyperlinks */
nav a
{
    text-decoration: none;
}

/* Making text within the H1 headers have 400% line height and be indented.*/
h1 
{
    line-height: 400%;
    text-indent: 1em;
}

/* Making font sizes be 90% of their original size in lists */
li { font-size:90% }
dd { font-size:90% }