/*
 * front.css
 * The CSS stylesheet for the index page of samanthabarrow.com
 */

body
/* default values for the entire page body */
{
    background-color: #663333; /* #6A6774;  #ffccce; #f6f6f6; */
    font-family: Helvetica, Arial, sans-serif;
    padding: 0;
}

div#container
/* the top-level div that includes all body content */
{
    width: 900px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

div#img-wrapper
/* wraps the phoenix image */
{
    width: 500px;
    float: left;
    margin: 0;
    padding: 0;
}
    
img#phoenix
/* the phoenix tattoo image that forms the backdrop of the index page */
{
    width: 500px;
    margin: 0;
    padding: 0;
    border: none;
}

ul.navLinks
/* the list of navigation links for the site */
{
    width: 390px;
    margin: 0 10px 0 0;
    padding: 0;
    float: left;
    font-size: 1.4em;
    list-style-type: none;
}
ul.navLinks li
/* the individual list items that contain the links */
{
    width: 100%;
    margin: 0.1em 0 0.1em 0;
    padding: 0;
    color: #000000;
    text-align: left;
}
ul.navLinks li.title
/* the title list item: "samantha barrow" */
{
    color: #909AA2; /* #AE3F54; #C788A2;*/
    font-size: 1.3em;
}
ul.navLinks li a:hover
{
    color: #909AA2;
    text-decoration: underline;
}
a 
/* all links should not have any text decoration here */
{ 
    color: #391E24;
    text-decoration: none; 
}
