@charset "UTF-8";
/*Strip the ul of padding and list styling*/
ul {
  list-style: none;
  margin: 0 10px;
  padding: 0;
  display: flex;
  justify-content: space-around;
}


/*Style 'show menu' label button and hide it by default*/
.show-menu {
  text-decoration: none;
  text-align: center;
  display: none;
}

/*Hide checkbox*/
input[type=checkbox] {
  display: none;
  -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked~#menu {
  display: block;
}

/*Responsive Styles*/
@media screen and (max-width: 670px) {
  /*Make dropdown links appear inline*/
  ul {
    position: static;
    display: none;
    margin: 0;
    padding-left: 15px;
    font-size: 1.2em;
  }
  /*Create vertical spacing*/
  li {
    margin-bottom: 10px;
	text-align: left;
  }
  /*Make all menu links full width*/
  a {
    width: 100%;
    text-align: left;
  }
  /*Display 'show menu' link*/
  .show-menu {
    display: block;
    text-align: left;
    padding: 3px 25px 2px;
  }
  .fa {
    padding-bottom: 8px;
    color: #6EB712;
  }
}