* {
    box-sizing: border-box;
}

body {
    background-image: url(../css/background/greek-vase.png);
}

.container {
    background-color: rgb(248, 246, 242);
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.assignmentContainer {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.bannerImage {
    width: 100%;
}

h1#pageHeader {
    margin-top: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: normal;
}

h2, h3 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: normal;
    margin-bottom: 0px;
}

p {
    font-family: 'Courier New', Courier, monospace;
}

nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    height: 40px;
    width: 100%;
    background-color: rgb(80, 80, 80);
}

nav ul li {
    display: inline-table;
    color: aliceblue;
    height: 40px;
    text-align: center;
    width: 230px;
    line-height: 40px;
    padding: 0px 5px 0px 5px;
    float: left;
}

nav a {
    text-decoration: none;
}

nav ul li:hover, #active {
    background-color: rgb(248, 246, 242);
    color: black;
}

button {
    background-color: rgb(106, 109, 138);
    font-family: 'Courier New', Courier, monospace;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 4px 2px;
    width: 200px;
    height: 74px;
}

button a {
    text-decoration: none;
    color: white;
}

button:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

footer p {
    font-size: 6pt;
    text-align: center;
}