@charset "utf-8";
html
{
    background-image: url(pumpkins.jpg);
    height: 100%;
}
header
{
    text-align: center;
    font-size: 30px;
    color: whitesmoke;
    line-height: 3em;
}
h1, h2
{
    text-shadow: whitesmoke 4px 6px 5px;
}
h1.cause
{
    padding-top: 10px;
    text-shadow: whitesmoke 4px 6px 5px;
    text-align: center;
}
body
{
    display: block;
    margin: 0;
    height: 100vh;
}
body main
{
    background-color: green;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 15px;
}
main img
{
    display: block;
    width: 30%;
    height: 45%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 0px 20px;
}
p
{
    font-size: 1.4em;
    margin: 0;
}
nav ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}
nav li
{
    display: block;
    width: 33.333%;
    float: left;
    font-size: large;
}
nav a
{
    display: block;
    background-color: black;
    color: whitesmoke;
    text-align: center;
    line-height: 3em;
    text-decoration: none;
}
nav a:hover
{
    background-color: whitesmoke;
    text-decoration: underline;
    color: black;
    font-size: 1em;
}
body > footer
{
    background-color: black;
    color: whitesmoke;
    font-size: large;
    line-height: 3em;
    text-align: center;
}