/*
* Skeleton V2.0.4 (Dark Theme Modified)
* Copyright 2014, Dave Gamache
* Free to use under the MIT license.
*/

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Code
- Spacing
- Utilities
- Misc
*/

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column,
.columns {
  width: 100%;
  box-sizing: border-box;
}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  font-size: 62.5%; /* 1.6rem = 16px */
  height: 100%;
}

body {
  font-size: 1.6em; /* currently ems cause chrome bug misinterpreting rems on body */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #e0e0e0;

  /* Dark Theme Background */
  background-color: #121212;
  background-image: radial-gradient(circle at top center, #1f1f1f 0%, #121212 70%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100%;
  margin: 0;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #ffffff;
}
h1 { font-size: 3.2rem; line-height: 1.2; letter-spacing: -0.05rem; }
h2 { font-size: 2.8rem; line-height: 1.25; letter-spacing: -0.05rem; }
h3 { font-size: 2.4rem; line-height: 1.3;  letter-spacing: -0.05rem; }
h4 { font-size: 2.0rem; line-height: 1.35; letter-spacing: -0.04rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -0.04rem; }
h6 { font-size: 1.6rem; line-height: 1.6;  letter-spacing: 0; }

p {
  margin-top: 0;
  margin-bottom: 2.5rem;
  color: #b0b0b0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #4dabf7;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #74c0fc;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #2c2c2c;
  border: 1px solid #333;
  border-radius: 4px;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1.5rem;
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #333;
}
