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

body {
  /*background: rgb(58, 83, 58);*/
  background-image: url(../images/background.jpg);
  background-size: cover;
}

#wrapper {
  width: 940px;
  margin: 20px auto;
  background: rgb(61, 56, 69);
  /* overflow: hidden; */
}

header {
  padding-bottom: 5px;
  height: 120px;
}

#logo {
  display: inline;
}

nav {
  background: rgb(26, 40, 26);
  height: 50px;
  clear: both;
  text-align: center;
  line-height: 50px;
  /*center vertically*/
  margin-left: 10px;
  margin-right: 10px;
}

nav li {
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 200px;
  margin-left: 200px;
}

nav a {
  color: beige;
  text-decoration: none;
}

main {
  width: 580px;
  float: left;
  margin-top: 20px;
  padding: 15px;
  color: beige;
}

aside {
  background: rgb(63, 86, 53);
  width: 340px;
  float: right;
  margin-top: 20px;
  margin-right: 15px;
  padding: 15px;
}

/*footer style*/
footer {
  clear: both;
  height: 50px;
  background: rgb(78, 78, 217);
  line-height: 50px;
  /*center vertically*/
  text-align: center;

}

footer li {
  list-style-type: none;
  display: inline-block;
  /*center text horizontally*/
  margin-right: 30px;
  color: bisque;
}

footer a {
  color: bisque;

}

img {
  max-width: 100%;
  height: auto;
}

img.left {
  float: left;
  width: 350px;
  margin-right: 15px;
}

img.right {
  float: right;
  width: 350px;
  margin-left: 10px;
}

img.center {
  margin: 20px auto;
  display: block;
  padding: 15px;
  height: 500px;
}

/*Typography*/
p {
  margin-bottom: 16px;
  line-height: 1.5;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1,
h2,
h3 {
  margin-bottom: 8px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}