@import url(http://fonts.googleapis.com/css?family=Lato:400,700|Montserrat:400,700);

:root {
  --border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: #c0dcf0;
  color: #666;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
}

#page {
  padding: 50px 100px;
}

@media only screen and (max-width: 768px) {
  #page {
    padding: 50px 30px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}

h1 {
  color: #1e5b86;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75em;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
    margin-top: 0;
  }
}

h2 {
  color: #357cad;
  font-size: 1.75rem;
  margin-bottom: 0.75em;
  margin-top: 2em;
}

h3 {
  color: #357cad;
  font-size: 1.25rem;
  margin-bottom: 0.75em;
  margin-top: 2em;
}

a,
a:visited,
a:active {
  color: #5b8e8d;
  text-decoration: none;
}

a:hover {
  color: #53bcba;
}

a.btn {
  background: #357cad;
  border-radius: var(--border-radius);
  color: #ffffff;
  display: inline-block;
  margin: 0.5em 5px;
  padding: 15px 20px;
  text-align: center;
  width: 160px;
}

a:hover.btn {
  background: #246795;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5em;
  word-break: break-word;
}

p.center {
  text-align: center;
}

p.credits {
  font-size: .8125rem;
  margin-top: 6em;
}

pre {
  border: none !important;
  margin: 2em 0;
  padding: 0;
  position: relative;
}

code {
  background: #a8cae2;
  border-radius: var(--border-radius);
  color: #1f445f;
  display: block;
  font-size: .875rem;
  overflow: auto;
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  code {
    padding: 20px 15px;
  }
}

.code--inline {
  display: inline-block;
  padding: 1px 5px;
  vertical-align: middle;
}

code:after {
  bottom: 3px;
  color: #e4ebeb;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
}

.code--html:after {
  content: 'html';
}

.code--css:after {
  content: 'css';
}

.code--js:after {
  content: 'js';
}

.code--settings {
  background: #f0f6f6;
  display: inline-block;
  margin: 0 0 0.5em;
  padding: 5px;
  vertical-align: middle;
}

h3.code {
  color: #636363;
  display: inline-block;
  height: 32px;
  margin: 1em 0.5em 1em 0;
  vertical-align: middle;
}

/*
 * Sample
 */
.page {
  padding: 30px 0 0;
}

.output {
  border: 2px dashed #70A3E2;
  border-radius: var(--border-radius);
  padding: 20px;
}

.output strong span {
  text-transform: uppercase;
}

.output--check div,
.output--listen-execute div {
  border-radius: var(--border-radius);
  color: white;
  display: none;
  font-size: 2rem;
  padding: 30px;
  text-align: center;
}

.output--check__xs,
.output--listen-execute__xs {
  background: #E2989E;
}

.output--check__sm,
.output--listen-execute__sm {
  background: #E1E281;
}

.output--check__md,
.output--listen-execute__md {
  background: #72E280;
}

.output--check__lg,
.output--listen-execute__lg {
  background: #C79EE2;
}

.output__btn {
  background: #8976E2;
  border: none;
  border-radius: var(--border-radius);
  color: white;
  padding: 20px;
  width: 100%;
}
