/***** RESETS *****/

* {
  margin: 0;
  padding: 0;
}

/***** FONTS *****/

@font-face { font-family: "Ionicons"; src: url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1"); src: url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.1") format("truetype"), url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.1") format("woff"), url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.1#Ionicons") format("svg"); font-weight: normal; font-style: normal; }

body {
  font-family: 'Arial', sans-serif;
  color: #666;
  font-size: 1em;
  background: #f9f9f9;
  line-height: 1.6em;
}

ul, li {
  list-style: none;
}

ul{
  padding-left: 0rem;
}

#container {
  width: 60%;
  margin: 0 20%;
  overflow: auto;
}

h1 {
  text-align: center;
  margin: 1em 0;
}

.title {
  height: 2.5em;
  width: 75%;
  margin-left: 12.5%;
  background: #6bba70;
  color: #fff;
  text-align: center;
  padding-top: .5em;
  transform: rotate(-1deg);
  box-shadow: 3px 5px 2px #999;
}

i {
  margin-right: 1em;
}

.faq li {
  padding: 1.25em;
}

.faq li.q {
  font-weight: bold;
  font-size: 120%;
  border-bottom: 1px #ccc solid;
  cursor: pointer;
}

.faq li.q:nth-child(1),
.faq li.q:nth-child(5),
.faq li.q:nth-child(9) {
  background: #eee;
}

.faq li.a {
  font-weight: bold;
  color: #6bba70;
  background: #fff;
  display: none;
}

img {
  margin-right: .5em;
}

footer {
  height: 6em;
  padding: 2em;
  margin-top: 2em;
}

footer h3 {
  width: 50%;
  margin: 0 25%;
}

footer a {
  color: #6bba30;
  text-decoration: none;
}

/********* MEDIA QUERIES ************/
@media (max-width: 800px) {
  #container {
      width: 100%;
      margin: 0 0%;
  }
  
  .title {
      width: 90%;
      margin: 0 5%;
      height: 3.5em;
  }
  
  .faq li {
      text-align: center;
  }
  
  .faq li.a {
      width: 85%;
      margin-left: 5%;
  }
  
  footer h3 {
      width: 90%;
      margin: 0 5%;
      text-align: center;
  }
}