body {
  padding: 0;
  margin: 0;
  background-color: #2A2A2A;
}

.content {
  background-clip: padding-box;
  width: 100%;
  margin-top: 80px;
  height: 100%;
  font-family: "Roboto", "Cantarell", sans-serif;
}


.header {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #2A2A2A;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 80px;
  box-shadow: 0 0px 5px 2px rgba(0,0,0,0.5);
}

.header-inner {
  margin: auto;
  align-items: center;
  height: inherit;
  display: flex;
  max-width: 80em;
}

.header-inner h1 {
  font-size: 3em;
  margin: auto;
  font-family: 'Quicksand', sans-serif;
  color: inherit;
}

.header-inner a {
    color: inherit;
    text-decoration: none;
    margin: auto;
}

.inner {
  padding-top: 5px;
  box-sizing: border-box;
  height: auto;
  max-width: 60ch;
  margin: auto;
}

.inner h1 {
    font-size: 3em;
    font-weight: 700;
    margin-top: 15px;
}

.content p {
    font-size: 14pt;
    line-height: 175%;
}

.inner p:last-of-type {
    margin-bottom: 0;
    padding-bottom: 30px;
}

.content a {
    color: inherit;
    text-decoration: underline;
}

.content form {
    text-align: center;
}



code, .code {
    padding: 3px;
    font-family: "Space Mono", monospace;
    line-height: 200%;
    word-wrap: break-word;
}

/* Code element specific styling */
code {
    display: block;
    text-align: center;
}

/* Color Palette */
.green {
    color: black;
    background-color: #0f9;
}

.purple {
    color: white;
    background-color: #8e44ad;
}

.blue {
    color: black;
    background-color: #10D2E5;
}

.black {
    color: white;
    background-color: #2A2A2A;
}

.grey {
    color: white;
    background-color: #34495e;
}

.gray {
    color: white;
    background-color: #453E4A;
}

/* Code highlights */
.green code, .green .code, .purple code, .purple .code, .blue code, .blue .code {
    background-color: rgba(0,0,0,0.1);
}

.black code, .black .code, .grey code, .grey .code, .gray code, .gray .code {
    background-color: rgba(255,255,255,0.1);
}

/* 'flat' styling */
.header.flat {
    box-shadow: none;
    position: relative;
}

.content.flat {
    margin-top: 0;
}

/* mobile design */
@media screen and (max-width: 600px) {
    .header-inner h1 {
        margin-left: auto;
    }

    .header-inner a {
        margin-left: auto;
        margin-right: auto;
    }

    .inner {
        height: auto;
        max-width: 80%;
    }

    .inner h1 {
        margin-bottom: 0;
        font-size: 2.5em;
    }

    .inner p:last-of-type {
        padding-bottom: 15px;
    }

}
