@charset "UTF-8";
/*CSS Document*/

/*
 Color Palette 
 #fff White
 #ffd1dc pastel pink
 #ff80ab light pink
 #e15e8a dark pink
 */

body {
    background: url("restaurant_icons_light_pink.png");
    background-color: #ffd1dc; /* Just in case image doesn't load */
    margin: 100px;
    width: 1100px;
    font-family: Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial, sans-serif;
}

header {
    background-color: #fff;
    clear: both;
    border: dashed #e15e8a;
    margin-bottom: 50px;
    padding: 15px;
}

header h1, h2 {
    text-align: center;
}

header h1 {
    font-size: 48px;
    color: #e15e8a;
    font-style: oblique;
    padding: 0;
}

header h2 {
    font-size: 28px;
    color: #ff80ab;
}

header img {
    position: absolute;
    top: 190px;
    left: 140px;
    padding: 5px;
}

#content {
    border: dashed #e15e8a;
    padding: 30px;
    background-color: #fff;
}

q {
    text-align: center;
    font-style: italic;
    padding-left: 30px;
}

section h3 {
    color: #e15e8a;
    text-decoration: underline;
    text-decoration-color: #ff80ab;
}

section li {
    text-align: justify;
}

#ingredients
{
    float: left;
    width: 400px;
}

#ingredients ul {
    list-style-type: circle;
}

#directions
{
    float: right;
    width: 500px;
}

/* The border for content was not including ingredients and direction
    so I added a clearfix.*/
#clearfix {
    clear: both;
}
