/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   */

   /* HTML5 display-role reset for older browsers */
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table, tr, th {
    background-color: #b9f6bb;
    border-spacing: 15;
  }



/*=========================================
    Main Styles
    =========================================*/
    body {
      font-family: arial;
    }

    .table {
      padding: 100px
    }

    .background {
      height: 100%;
      background:
      #a6fea8;
    }

    .shadow {
      color: #000000;
      text-shadow: 2px 2px 5px #0a950e;

    }

    .background2 {
      height: 100%;
      background: #8ddd90;
      padding-bottom: 25px;
      font-size: 12px;
    }

    .container {
  width: 80%;
  margin: 0 auto;
}

header::after {
  content: '';
  display: table;
  clear: both;
}

nav {
  float: center;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 50px;
  padding-top: 25px;

  position: relative;
}

nav a {
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover {
  color: #555555;
}

nav a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: #444;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}