/* Styles for my big website */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
 }
 body{
    background:beige;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-image:url(../images/background-image.jpg);
 }
 div#wrapper {
    width:940px;
    margin: 20px auto;
    background:white;
}
nav li {
    list-style-type: none;
    float:left;
    /* margin-right:60px; */
    /* margin-left:60px; */
    width:50%;
    text-align: center;
    

}
nav {
    height: 50px;
    line-height: 50px;
    box-sizing:border-box;
    
}
nav a:hover{
    background:lightblue;
    color:white;
}
nav a {
    text-decoration: none;
    display:block;
}
h1, h2, h3, p {
    margin-bottom:20px;
    

}
h1, h2, h3 {
    color:darkblue;
}
p {
    line-height:1.5;
}
main{
    width:580px;
  
    /* background:lightgreen; */
    float:left;
    margin-top:24px;
 }
 aside {
    width:340px;
    padding:15px;
    background:pink;
    float:right;
    margin-top:20px;
 }
 footer {
    height:50px;
    line-height:50px;
    border-top: 1px dotted #666;
    color:#666;
    
    clear:both;
/* all your images will have a max width of 100% */
 }
 footer li {
    list-style-type: none;
    float:left;
    margin-right:30px;
    color:#666;
 }
 img.right {
    float:right;
    margin-left:30px;
    margin-bottom:10px;
 }
 img.left {
    float:left;
    margin-right:30px;
    margin-bottom:10px;

 }
 .center{
    margin: 20px auto;
    /* centering the image */
    display:block;
    /* we must change the inline image to a block level image */
    text-align: center;
}