html {
  background-color: #ddd;
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  position: relative;
  margin: 0 auto;
  background-color: white;
  width: 100%;
  min-height: 100%;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  body {
    width: 768px;
  }
}
@media (min-width: 960px) {
  body {
    width: 80%;
  }
}
main {
  margin: 0px;
  padding: 0px;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
main div {
  padding: 16px;
}
main div h1 {
  margin-top: 0;
}
main a {
  text-decoration: none;
  color: #e20;
}
main span {
  padding: 2px;
  border-radius: 2px;
}
main pre code {
  overflow: auto;
  display: block;
  background-color: #fee;
  padding: 4px;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #e20;
}
header {
  background: -webkit-gradient(linear, left top, left bottom, from(#e00), to(#c00));
  background: linear-gradient(#e00, #c00);
  height: 200px;
  margin: 0;
  position: relative;
}
@media (min-width: 768px) {
  header {
    height: 150px;
  }
}
header .centering {
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .centering .title {
  padding-left: 16px;
}
header .centering .title .title-text {
  margin-top: 0;
  font-size: 1.7em;
  color: white;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 300;
  letter-spacing: -1px;
}
header .panel {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  background-color: #ff3333;
}
@media (min-width: 768px) {
  header .panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    border-radius: 16px 0 0 0;
  }
}
header .panel p {
  margin-left: 16px;
}
header .panel a {
  text-decoration: none;
  color: inherit;
  padding: 16px;
  background-color: #e20;
}
header .panel a:hover {
  background-color: #baa;
}
@media (min-width: 0px) {
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
nav a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 12px;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 300;
  text-decoration: none;
  color: white;
  text-align: center;
  vertical-align: middle;
  background: -webkit-gradient(linear, left top, left bottom, from(#e20), to(#c00));
  background: linear-gradient(#e20, #c00);
  border-color: #bb0000;
  border-width: 1px;
  border-style: solid;
}
form label {
  display: block;
  margin-bottom: 4px;
}
.coolStuff .citation {
  display: block;
  padding: 32px;
  border-radius: 8px;
  position: relative;
}
.coolStuff .citation > * {
  opacity: 1;
}
.coolStuff .citation p {
  font-size: 3em;
}
.coolStuff .citation p::before {
  content: "\"";
}
.coolStuff .citation p::after {
  content: "\"";
}
.coolStuff .citation small {
  display: block;
  text-align: right;
}
.coolStuff .event {
  margin-bottom: 1em;
}
footer {
  background-color: #c00;
  color: white;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 0.8em;
  font-style: oblique;
  padding: 4px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
