#app {
    max-width: 600px;
    margin: auto;
}

#title {}

pre {
    background: #f3f3f3;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: monospace;
    font-size: 0.9em;
    line-height: 1.5em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 0 0 1px #ddd;
    box-shadow: inset 0 0 0 1px #ddd;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

pre code {
  margin: 0;
}

code {
    font-family: monospace;
    font-size: 0.9em;
    line-height: 1.5em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.5em;
    margin: 0.5em;
    background: #fafafa;
    -webkit-box-shadow: inset 0 0 0 1px #ddd;
    box-shadow: inset 0 0 0 1px #ddd;
    border-radius: 3px;
}

a {
    color: lightskyblue;
    text-decoration: none;
}

li {
    margin-bottom: 3px;
}

a:hover {
    text-decoration: underline;
}