/* Website Style */
#err{
    color:red;
}
header{
    width: 100%;
    float: left;
    font-family: Georgia, serif;
    text-align: center;

}

nav{
    width: 20%;
    float: left;

}

main{
    width: 60%;
    float: left;
    font-size: large;
    text-align: center;
    min-height: 500px;

}

main img{
    width: 250px;
    display: block;
    margin: 0 auto;
}

main p{
    margin-top: 10px;
    text-indent: 25px;
}

footer{
    width: 100%;
    float: left;
    font-size: small;
    font-weight: bold;
    text-align: center;

}

/* Website Navigation Style */

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
}

ul a{
    display: block;
    color: black;
    padding: 8px 0 8px 32px;
    text-decoration: none;
}

/* Navigation Hover Style */

li a:hover{
    background-color: #555555;
    color: #f1f1f1
}

ul{
    border: 1px solid;
}

li{
    text-align: left;
    border-bottom: 1px solid;
}

li:last-child{
    border-bottom: none;
}
