html {
    background-image: url('images/back.jpg'); 
}

body {
    width: 80%;
    margin: 20px auto;
}

header{
    background-size: cover ;
    background-image: url('images/banner.jpg');
    height: 300px;
    border: 5px solid;
    border-radius:15px;
    width: 800;
}

header h1 {
    color: whitesmoke;
    font-size: 80pt;
    font-weight: bold;
    text-align: center;
    padding: 85px;
    text-shadow: 2px 2px black;
}

#container {
    width: 800px;
    margin: 0 auto;
}

#body {
    outline: 5px solid black;
}


nav {
    background-color:#fff ;
    width: 800px;
    margin: 0 auto;
}

section {
    display: table-cell;
    background-color: #fff;
    width: 800px;
    padding: 10px;
    font-family: Georgia, 'Times New Roman', Times, serif;

    border-radius: 5px;
}

nav a {
    display: inline-block; /* Makes links display horizontally */
    margin: 0 10px; /* Adds horizontal spacing between links */
    padding: 8px;
    color: #68CDD7;
    font-size: 14pt;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

footer {
    padding: 10px;
    background-color: white;
}

img {
    border: 4px solid;
    border-color: white;
    box-shadow: 5px 5px 5px black;
    outline: 1px solid black;
}               

h2,h3 {
    color: #5F3916;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

footer{
    background-color: #5D4835;
    color: white;
    text-align: center;
    font-size: 12pt;
    padding: 10px;
    margin-top: 20px;
    border-radius: 100px;
}