/*
author: Harsh Patel
description: Copy the styling of provided image of Webpage using CSS.
content: This file contains the styling for the webpage for Grandma's Lemon Meringue Pie.
 */

body {
    background-color: white;
    background-image: url(../img/silverware.jpg);
    background-attachment: fixed;
    background-repeat: repeat;
    color: #404040;
    font-size: 11pt;
    font-family: Georgia, Garamond, serif;
    padding: 2em;
}

a {
    color: #A4A400;
}

abbr {
    text-decoration: underline;
}

pre {
    font-family: monospace;
    text-align: left;
}

blockquote {
    font-style: italic;
    background-color: #FFFFA8;
}

ul {
    list-style-image: url(../img/pie_bullet.png);
}

h1 {
    font-family: "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
    text-decoration: underline;
    color: #A4A400;
    background-color: #F0F0F0;
    letter-spacing: 0.25em;
}

#main-heading {
    text-align: center;
    font-size: 22pt;
    font-weight: bold;
}

.headings {
    text-align: left;
    font-size: 18pt;
    font-weight: normal;
}

.bolded {
    font-weight: bold;
}