/* 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;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  #hero{
    height : 475px;
    width: 100%;
    background-image: url(../img/llama.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 50%;
  }

#llamaimg{
  float: right;
  width:175px;
  height: auto;
  transform: rotate(3deg);
  transition: 2s all;
}

#llamaimg:hover{
  width:175px;
  transform: rotate(220deg);
}

/*=========================================
    Main Styles
    =========================================*/
    body {
      font-family: arial;
      background-color: #eee;
      background-image: url(../img/background.jpg);
      margin : 0;
    }

    .container {
      width: 80%;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 5px 5px 10px #00F;
      padding: 20px;
    }

    .footer {
      text-align: center;
    }