/* General setup */

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0 auto;
    min-width: 1000px;
    max-width: 1400px;
  }
  
  /* 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;
  }

/*MY CODE*/

  .headerText {
      text-align: center;
  }

  ul.menuLinks li{
     /* list-style-type: none;*/
      line-height: 50px;
      text-align: center;
      border: 1px solid  #a66;
      margin: 10px;
  }
  
  ul.menuLinks li a {
      text-decoration: none;
      color:  #a66;
  }

  a {
    color:  #a66;  
  }

  .indt {
     text-indent: 10px;
  }

 