body {
    background: url(../images/tile.png);
    font-family: monospace;
}

h2 {
    text-align: center;
    color: rgb(0, 0, 0);
}

header,
nav,
section,
article,
footer {
    border: 1px dashed rgb(255, 0, 0);
    border-radius: 10px;
}

header {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.952);
}

nav {
    width: 10%;
    min-width: 200px;
    height: 1100px;
    float: left;
    margin: 0px 30px 0px 30px;
    background-color: rgba(255, 255, 255, 0.75);
}

#menu {
    list-style-type: none;
    padding-left: 0px;
}

#banner-content {
    text-align: center;
    margin-top: 50px;
}

#banner-content a {
    text-decoration: none;
    color: rgb(255, 123, 0);
}

#banner-content a:hover {
    text-decoration: underline;
    color: rgb(158, 76, 0);
}

#logo {
    width: 210px;
    height: 170px;
    float: left;
    margin: 5px 0px 5px 10px;
}

section {
    width: 89%;
    height: 1100px;
    max-width: 800px;
    float: left;
    background-color: rgba(255, 255, 255, 0.75);
}

article {
    width: 96%;
    max-width: 700px;
    height: 950px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(255, 255, 255);
    text-align: justify;
    line-height: 1.5em;
    padding: 20px;
    overflow: auto;
    font-family: Arial, Helvetica, sans-serif;
}

article p {
    color: rgb(0, 0, 0);
}

article img {
    float: left;
    margin-right: 20px;
}

footer {
    width: 100%;
    height: 100px;
    float: left;
    margin: 10px 0px 20px 0px;
    background-color: rgba(255, 255, 255, 0.75);
}

footer p {
    text-align: center;
    font-size: large;
    margin: 0 0 0 10px;
}

.container {
    width: 1100px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

#menu li {
    list-style-type: none;
}

#menu ul li a {
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 3px;
    display: block;
    text-align: center;
    background-color: rgb(155, 155, 155);
}

#menu ul li a:hover {
    background-color: rgb(255, 134, 35);
    color: rgb(255, 255, 255);
}

#menu ul ul a {
    position: relative;
    bottom: 20px;
    left: 100%;
    display: none;
}

#menu ul li:hover>ul a {
    display: block;
}