/* Styles for the Avatar page website */

* {
  padding: 0;
  margin: 0;
}

body {
  background: black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url(../images/background.png);
  background-attachment: fixed;
}

#wrapper {
  width: 940px;
  background-color: dimgrey;
  padding: 20px;
  margin: 20px auto;
}

header {
  height: 160px;
  background: white;
}

nav {
  height: 50px;
  line-height: 50px;
  background: rgb(69, 178, 214);
  text-align: center;
}

nav li {
  list-style-type: none;
  float: left;
  width: 50%;
}

nav a {
  text-decoration: none;
  display: block;
}

nav a:hover{
  background: black;
  color: white;
}

main {
  width: 580px;
  /* height: 400px; */
  float: left;
}

aside {
  width: 300px;
  /* height: 350px; */
  background: rgb(27, 39, 52);
  float: right;
  padding: 20px;
  color: white;
  font-size: 0.9em;
}

footer {
  height: 50px;
  line-height: 50px;
  background: cadetblue;
  clear: both;
  font-size: .875em;
}

footer li{
  list-style-type: none;
  float: left;
  margin-left: 30px;
  color: white;
} 

footer ul {
  margin-left: 20px;
}

a {
  color: white;
}

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

img.left {
  float: left;
  /* margin-left: 10px; */
  margin-right: 30px;
  width: 250px;
  /* height: 190px; */
}

.center {
  margin: 20px auto;
  display: block;
  text-align: center;
}

p {
  margin-bottom: 20px;
  line-height: 1.5;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}


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

