body {
    margin: 0;
    padding: 0;
    background: url("clearstormclouds.jpg");
}

#logo {
    position: absolute;
    top: 0px;
    text-align: center;
    height: 175px;
    width: 100%;
    background-color: darkblue;
    color: white;
    font-family: candara;
}

#menu {
    position: absolute;
    top: 115px;
    width: 100%;
    height: 60px;
    background-color: darkblue;
    text-align: center;
    color: white;
    font-size: 25px;
    font: bold;
    font-family: candara;
}

#content {
    position: absolute;
    top: 175px;
    width: 100%;
    background-color: floralwhite;
    color: black;
    padding-left: 20px;
    padding-top: 0px;
    padding-right: 20px;
    font-size: 20px;
    font-family: candara;
}

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style-type: none;
    padding-left: 20px;
}

li {
    padding-bottom: 20px;
}

header {
    position: relative;
    bottom: 25px;
    padding-top: 15px;
    padding-bottom: 0px;
    font-size: 30px;
}

.logo {
    font-size: 150px;
    padding-bottom: 0px;
}

.navList {
    padding-bottom: 20px;
}

@media only screen and (min-width: 600px) {
    .logo {
        font-size: 75px;
        padding-bottom: 0px;
    }
    #content {
        position: absolute;
        top: 175px;
        width: 50%;
        margin-left: 25%;
        margin-right: 25%;
        background-color: floralwhite;
        color: black;
        padding-left: 20px;
        padding-top: 0px;
        padding-right: 20px;
        font-size: 20px;
        font-family: candara;
    }
}

