/* CSS Style for Big Page */
* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:#1B262C;
    background-image: url(../images/BACKGROUND.png);
    background-attachment:fixed;
}

#wrapper {
    width:940px;
    margin: 20px auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

#logo{

}

nav {
    border-radius: 25px;
    background:#234155;
    height:50px;
    margin-bottom:30px;
}

nav li {
    line-height:50px;
    list-style-type: none;
    float:left;
    width: 50%;
    text-align: center;
}

nav a {
    font-size: 1.5em;
    font-weight: 400;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    color:antiquewhite
}

nav a:hover {
    text-decoration:underline;
    font-weight: 600;

}

main {
    width:580px;
    float:left;
    margin-bottom: 30px;
}


aside {
    padding: 20px;
    margin-top: 60px;
    border-radius: 25px;
    width:340px;
    background:#2341558f;
    float:right;
}

footer {
    border-radius: 25px;
    height:50px;
    background:#234155;
    clear:both
}

footer li {
    line-height:50px;
    list-style-type: none;
    float:left;
    width: 25%;
    text-align: center;
    color:antiquewhite;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}


img {
    max-width:100%;

}

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

img.right:hover{
    transform:scale(1.1)
}
.center {
    margin: 20px auto;
    text-align: center;
    display: block;
}

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

/* Typography */

h1, h2, h3, p, a {
    margin-bottom:20px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color:antiquewhite;
}

h1 {
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    
}

h3 {

}

p {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height:1.75;
}

