/* General setup */

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0 auto;
    min-width: 1000px;
    max-width: 1400px;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    word-spacing: 4px;
  }
  
  /* Layout */
  
  section {
    float: left;
    width: 50%;
  }
  
  aside {
    float: left;
    width: 30%;
  }
  
  nav {
    float: left;
    width: 20%;
  }
  
  footer {
    clear: both;
  }
  
  header, section, aside, nav, footer {
    padding: 20px;
  }
  
  /* header and footer */
  
  header, footer {
    border-top: 5px solid #a66;
    border-bottom: 5px solid #a66;
  }
  
  /* WRITE YOUR CODE BELOW HERE */
  h1,h2 {
    font-size: 30px;
    letter-spacing: 2px;
    font-family: cursive;
  }
  h1{
      text-align: center;
  }

  section h2 > p {
    padding-left: 20px;
  }

  a {
      color: cornflowerblue;
  }

  a:visited {
   color: crimson;
  }

  a:focus {
    text-decoration: none;
}
  a:active {
    text-decoration-line: overline;
}

  a:hover {
      color: darkmagenta;
      text-decoration: none;
  }

li {
    line-height: 15px;
    list-style-type: square;
}

ol li {
    list-style-type: lower-alpha;
}
a[href*="http"] {
    background: url("/img/icon.png") no-repeat 100% 0;
    background-size: 10px 10px;
    padding-right: 15px;
}

nav li {
    display: block;
}

nav a {
    border: 1px solid brown ;
    width: 100px;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 3;
    margin: 8px;
    padding: 3px;
  }