

/* menu */

nav ul li {
    float: left;
    list-style: none;
    margin-right: 1em;
    font-family: 'Dosis', sans-serif;
    font-size: 25px;
    padding: 12 px;
}
 
nav li a {
    color: #544738;
    text-decoration: none;
    float: left;
}
 
nav li:nth-child(odd) a:hover {
    color: #8474af;
    -webkit-transform: rotate(-8deg) scale(1.2);
    -moz-transform: rotate(-8deg) scale(1.2);
    -o-transform: rotate(-8deg) scale(1.2);
}

nav li:nth-child(even) a:hover {
    color: #8474af;
    -webkit-transform: rotate(8deg) scale(1.2);
    -moz-transform: rotate(8deg) scale(1.2);
    -o-transform: rotate(8deg) scale(1.2);
}

.active {
    color: #8474af;
}

/* */

html {
    margin: 0;
    padding: 0;
    background-color: #8474af;
}

body {
    width: 960px;
    padding: 20px;
    margin: 30px auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 10px #594b81;
}

header,section,article,aside,footer,nav{
    display: block;
}


header{
    width: 960px;
    /*border: 1px solid green;*/
}

nav{
    width: 960px;
    height: 50px;
    margin-top: 5px;
    /*border: 1px solid red;*/
    /*float:left;*/
}

aside{
    float:left;
    width: 300px;
    padding: 10px;
    /*min-height:600px;*/
}

section{
    margin-left: 320px;
    width: 620px;
    padding: 6px 10px 10px;
    text-align: justify;
    font-family: 'Dosis';
    min-height:250px;
}

footer{
    width: 960px;
}

p:first-child{
    margin-top: 0;
}

h1:first-child{
    margin-top: 0;
}

h3:first-child{
    margin-top: 0;
}