* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background-color:grey
}

/* HEADER AND NAVIGATION */
.header,
.footer {
    display: block;
    padding: 10px;
    background-color: black;
    border: 5px;
    color:white

}

.footer h3,
.header h1 {
    display: block;
    text-align: center;
    font-size: 30px;
}

.header nav {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

.header nav ul li {
    display: inline-block;
    list-style-type: none;
    padding: 5px;
}

a {
    color: #c0c0c0;
    text-decoration: none;
}

/* 4 PART IMAGE ON FRONT PAGE */
.mini-spread {
    height: 850px;
    width: 100%;
} 

/* ABOUT ME AND FACTIONS TEXT BOXES */
.article {
    width: 80%;
    margin: 10px auto;
    margin-bottom: 30px;
    border: 8px solid black;
    box-shadow: 5px 6px #494949;
    color: white;
    background-color: rgb(0, 0, 0, 0.7);
}

.article h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 5px
}

p {
    text-align: left;
    padding-bottom: 10px;
    margin-right: 100px;
}