html {
    box-sizing: border-box;
    margin: 0;
}
*, *:before, *:after {
    box-sizing: inherit;
}
::selection {
    background: #fff;
    }
::-moz-selection {
    background: #fff;
}
body {
    background-color: #eee7e3;
    margin: 0;
    color: #5d6566;
    font-size: 16px;
    font-family: 'Source Serif Pro', serif;
    text-align: center;
}
#top {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(top.jpg);
    background-position: top center;
    width: 610px;
    height: 563px;
}
#nav {
    position: absolute;
    top: 520px;
    left: 250px;
    width: 160px;
    text-align: right;
}
#nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: lowercase;
}
#nav a {
    color: #655855;
    box-shadow: 0px -5px 0px #e5d3d3 inset;
}
#nav a:hover {
    color: #111;
    box-shadow: 0px -18px 0px #e5d3d3 inset;
}

#content {
    position: absolute;
    top: 220px;
    left: 460px;
    width: 660px;
    max-width: 100%;
    margin: auto;
    padding: 0 1em 1em;
    text-align: left;
    line-height: 1.56;
}
#footer {
    font-size: .8em;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
}
#footer:before {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    margin: auto;
    background-color: #cbc3c0;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-top: .25em;
    margin-bottom: .25em;
}
h1 {
    font-size: 1.5em;
    font-weight: 700;
}
h2 {
    text-align: center;
    font-weight: 400;
    font-size: 1.1em;
    text-transform: uppercase;
}
h1 + h2 {
    margin-top: -10px;
}

h1 + p, h2 + p {
    margin-top: .2em;
}

.codes {
    line-height: 1;
    text-align: center;
    width: 90%;
}
.codes img {
    border: 3px solid #cdc9d9;
    margin: 1px;
    padding: 3px;
}
.codes img:hover {
    border-color: #be8384;
}

.list-fan {
    margin-bottom: 8px;
    padding-left: 1.5em;
}
.list-fan > span {
    display: inline-block;
    width: 22%;
    vertical-align: top;
}
.list-fan > span:first-child { width: 30%; }
.list-fan > span:first-child:before {
    border-radius: 100%;
    width: 14px;
    height: 14px;
    background-color: #97bec2;
    top: .15em;
    margin-right: -.5em;
}
.list-fan:nth-child(2n) > span:first-child:before { background-color: #d2b3a9; }

p {
    margin: 1.4em 0;
}
ul {
    list-style-type: circle;
}
ul, ol {
    padding-left: 1.2em;
}

i { color: #b56e76; }
em { color: #9a8cad;}
strong,b { color: #3d403f;}

.left {
    float: left;
    margin-right: 1em;
}
.left.first {
    margin-top: -100px;
}
.right {
    float: right;
    margin-left: .5em;
}
.right.second {
    margin-top: 60px;
}

.stats {
    margin: 1.4em 3em;
    padding: .7em 1em;
    background-color: #e5dcdc;
    text-align: center;
    border-right: 1px solid #dad3d3;
    border-bottom: 2px solid #dad3d3;
    border-radius: 6px;
    font-size: .8em;
}

input, select, textarea {
    background-color: #f1f1f1;
    border: none;
    border-right: 1px solid #d8d8d8;
    border-bottom: 2px solid #d8d8d8;
    padding: 6px;
    font-size: .9em;
    color: #7587af;
    font-family: 'Source Serif Pro', serif;
    transition: all 0.3s ease;
}
input:hover, select:hover, textarea:hover {
    border-color: #c6938d;
}
input[type='submit'], input[type='reset'] {
    color: #e7e7e7;
    background-color: #c65b4d;
    border: 0px solid #a1443a;
    border-width: 0 1px 2px 0;
    padding: 8px 15px;
    text-transform: uppercase;
    font-size: .7em;
    font-weight: 700;
    letter-spacing: 1px;
}
input[type='submit']:hover, input[type='reset']:hover {
    border-color: #422521;
    background-color: #8f362c;
    cursor: pointer;
}

a {
    color: #bb5457;
    text-decoration: none;
    box-shadow: 0px -9px 0px #cad6d8 inset;
    transition: all 0.3s ease;
}
a:hover {
    color: #333;
    box-shadow: 0px -18px 0px #cad6d8 inset;
}