@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900|Noto+Sans:400,700');

* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
    
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  font-size: 1.1em;
  margin: 1em 0;
}
.description {
  margin: 1em auto 2.25em;
}
body {
  /*width: 40%;
  min-width: 300px;
  max-width: 400px;
  margin: 1.5em auto;
  color: #333;*/
}
h1 {
  font-family: 'Roboto', cursive;
  font-weight: 400;
  font-size: 2.5em;
}
ul {
  list-style: none;
  padding: 0;
}
ul .inner {
  padding-left: 1em;
  overflow: hidden;
  display: none;
}
ul .inner.show {
  /*display: block;*/
}
ul li {
  /*margin: .5em 0;*/
}
ul li a.toggle {
  width: 100%;
  display: block;
  background:#f9f9f9;
  color: #130f0f;	
  padding: .75em;
  border-radius: 0.15em;
  transition: background .3s ease;
  text-decoration: none;
}
ul li a.toggle:hover {
  background: rgb(193, 193, 193);
}
