/* Styles for big website */

* {
    padding:0;
    margin:0;
    box-sizing:border-box;
}

body {
    background-image: url(../images/board.jpg);
    background-size:180px;
    background-attachment:fixed;
}

header {
    padding-top:10px;
	background:cadetblue;
    position:fixed;
    width:100%;
    top:0;
    left:0;
}

#inner-header {
    width:940px;
    margin:0 auto;
}

nav {
    background:darkcyan;
    height:50px;
    line-height:50px;
    margin-top:10px;
}

nav ul {
    width:1000px;
    margin:0 auto;
}

nav li {
    background:#444;
    color:#000;
    list-style-type:none;
    float:left;
    width:50%;
    text-align:center;
}

nav a {
    color:#ffdb76;
    display:block;
    text-decoration:none;
}

.home nav li:nth-child(1) a, .big nav li:nth-child(2) a {
    background:#222;
}

nav li:hover {
    background:#222;
}

#wrapper {
    width:940px;
    padding:0 10px;
    margin:150px auto 20px auto;
    overflow:hidden;
    background:cadetblue;
}

main {
    width:570px;
    float:left;
    margin-top:60px;
    margin-bottom:20px;
}

aside {
    margin-top:70px;
    width:330px;
    float:right;
    background:mediumspringgreen;
    padding:15px;
}

footer {
    height:40px;
    line-height:40px;
    border-top:1px dotted #666;
    clear:both;
    font-size:.9em;
}

footer li {
    padding-top:5px;
    float:left;
    list-style-type:none;
    color:#ffdb76;
    display:block;
    width:20%;
    text-align:center;
}

footer a {
    color:#ffdb76;
}

img.right {
    float:right;
    margin-left:20px;
    margin-bottom:10px;
}

img.left {
    float:left;
    margin-right:20px;
    margin-bottom:20px;
}

.center {
    margin:20px auto;
    display:block;
    text-align:center;
}

.center a {
    color:#ffdb76;
    font-weight:bolder;
}

img.center {
    margin-top:60px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    margin-bottom:8px;
    font-family:Georgia, "Times New Roman", Times, serif;
    line-height:1.2;
    color:midnightblue;
}

h2 {
    color:blue;
    font-size:2em;
}

h3 {
    color:#000;
    font-size:1.4em;
    font-style:italic;
}

p {
    margin-bottom:20px;
    line-height:1.4;
}

aside p {
    font-size:0.9em;
}