* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

#container{
  width: 84%;
  max-width: 1280px;
  margin: 0 auto;
}

header {
   position:relative;
   height: 8rem;
   background: #333;
   box-shadow: 0 4px 0.3125rem rgba(0,0,0,.3);
 }

  header h1{
    position: absolute;
    top: 3rem;
    left: 3rem;
    font-size: 2rem;
    color: white;
 }

nav {
  padding: 1rem 3rem ;
  background: #344;
}
  nav ul{
    display: flex;
    flex-direction: column;
  }
  nav ul li{
    margin-right: 2rem;
  }
  nav ul li a {
    color: white;
    font-size:1rem
  }

main{
  display: flex;
  flex-wrap：wrap;
  justify-content:space-between;
}
 
  section{
    flex: 3;
    padding: 3rem;
    background: #EEE;
  }

    article{
      min-height: 8rem;
      padding: 1rem;
      margin-bottom: 2rem;
      background: #FFF;
    }

  aside{
    flex: 1;
    padding: 3rem;
    background: #DDD;
  }

footer {
  padding: 2rem 3rem;
  text-align: center;
  background: #333;
  color: white;
}