@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');

/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: rgba(254, 254, 254, 1);
  color: #333333;
  font-family: 'Open Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 1000px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

a {
  color: rgba(0, 153, 255, 1);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: underline;
}



.container {
  max-width: 7000px;
  margin-left: 300px;
  padding: 0 30px;
}

.container img {
  max-width: 100%;
}


.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc_container {
  width: 300px;
  height: 100vh;
  overflow: scroll;
  border-right: 1px solid #ccc;
  padding: 1em;
  position: fixed;
  top: 0;
  left: 0;
}

.copy {
  font-size: .8em;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid #ccc;
}