body {
      font-family: "Helvetica Neue", 'Titillium Web', sans-serif;
      color: #333333;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

h1 {
    font-size: 20pt;
    font-weight: 400;
    padding-bottom: 10px
}

h2 {
    font-size: 15pt;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 30px;
}

p {
    margin: 0;
}

.expandable {
    cursor: pointer;
}

.expandable + p {
    max-height: 500px;
    -webkit-transition: max-height .5s;
    -moz-transition: max-height .5s;
    transition: max-height .5s;
    overflow: hidden;
}

.hidden {
    max-height: 0 !important;
}