/*
Assignment Name: Lab Exercise 4
File Name: styles.css
Date: 04/29/18 
Programmer: Liana Schweitzer
*/

body {
    background-color: skyblue;
    font-family: Arial;
    font-size: 1em;
    text-align: center;
}

footer {
    font-size: .70em;
    font-style: italic;
    text-align: center;
    background-color: greenyellow;
    padding-top: 1em;
    padding-bottom: 0em;
    height: 40px;
    margin-top: 40px;
    margin: auto;
    width: 50%;
    text-align: center;
}

table {
    background-color: white;
    margin: auto;
    width: 50%;
}

th {
    background-color: greenyellow;
    font-size: 2em;
    padding: 20px;
}

td {
    padding: 20px;
}