@import url("/css/reset.css");
@import url("http://fonts.googleapis.com/css?family=Roboto:400,100,400italic,100italic");
@import url("http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic,700italic");
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  font-size: 30px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: hsl(210, 10%, 27%);
  font-weight: 100;
  background: -webkit-radial-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 87%));
  background: radial-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 87%));
}

h1, h2, h3 {
  color: hsl(331, 75%, 68%);
  margin-bottom: 1em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

p, li {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  border-bottom: 1px dotted;
  border-bottom-color: currentColor;
  -webkit-transition: color 100ms ease, border-bottom-color 100ms ease;
  transition: color 100ms ease, border-bottom-color 100ms ease;
}
a:link, a:visited {
  color: hsl(331, 75%, 68%);
}
a:hover {
  color: hsl(331, 75%, 78%);
}
a:active {
  color: hsl(331, 75%, 58%);
}

pre, code {
  text-align: left;
  font-family: "Ubuntu Mono", monospace;
}

table {
  font-size: 0.5em;
}
table td, table th {
  vertical-align: middle;
  padding: 0.25em 1em;
}
table td:not(:first-child), table th:not(:first-child) {
  border-left: 1px solid hsl(210, 10%, 27%);
}
table th {
  font-weight: 400;
}

.step {
  width: 960px;
  text-align: center;
  padding: 5rem;
  background-color: hsla(0, 100%, 100%, 0.85);
  border-radius: 2px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.step iframe {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#title {
  background-color: transparent;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
#title .subtitle {
  color: hsl(0, 0%, 60%);
}

/*# sourceMappingURL=styles.css.map */