/* *{
    -webkit-transition: all 0.2s; Safari
    -webkit-transition-timing-function: linear; Safari
    transition: all 0.2s;
    transition-timing-function: linear;
      } */
body {
  max-width: 800px;
  font-family: "Work Sans", sans-serif;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 20px;
  color: #333;
  padding: 2em 1em;
  text-rendering: optimizeLegibility;
  height: 100%; }
  @media screen and (max-width: 600px) {
    body {
      max-width: 100%;
      padding: 1em; } }

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  line-height: 0.8;
  margin: 1;
  text-transform: capitalize; }

a {
  color: #60c17d;
  text-decoration: none; }
  a:hover {
    color: #333; }

p a {
  color: #333;
  text-decoration: none;
  background: -webkit-linear-gradient(transparent 90%, #85cf9b 10%);
  box-shadow: inset 0 0 0 0 #85cf9b;
  -webkit-transition: box-shadow ease 1s;
  -moz-transition: box-shadow ease 1s;
  transition: box-shadow ease 1s; }
  p a:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 #85cf9b; }

figure {
  margin: 0; }

img {
  max-width: 100%; }

pre,
code {
  overflow: auto;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #60c17d; }
  pre > code,
  code > code {
    border: none; }

pre {
  padding: 1em; }

code {
  padding: 0.1em; }

blockquote {
  border-left: 2px solid #60c17d;
  padding-left: 1em;
  font-family: Georgia,Times,Times New Roman,serif;
  font-size: 18px;
  font-style: italic; }

.headline {
  font-size: 4em; }
  @media screen and (max-width: 600px) {
    .headline {
      font-size: 2.4em; } }

.home {
  background-image: url(../images/left-arrow.svg);
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  opacity: 0.9;
  position: fixed;
  top: 50px;
  left: 50px; }
  .home:hover {
    opacity: 1; }
  @media screen and (max-width: 800px) {
    .home {
      top: 90%;
      left: 90%;
      height: 30px;
      width: 30px;
      opacity: 0.6; } }

.video {
  width: 100%;
  height: 360px; }
  @media screen and (max-width: 800px) {
    .video {
      height: 300px; } }
  @media screen and (max-width: 600px) {
    .video {
      height: 180px; } }

#markdown-toc::before {
  content: "Contents";
  font-weight: bold; }

#markdown-toc ul {
  list-style: decimal; }

#markdown-toc {
  border: 1px solid #60c17d;
  padding: 1.5em;
  list-style: decimal;
  display: inline-block; }

.theme {
  background-size: contain;
  height: 40px;
  width: 40px;
  margin: 1em 0;
  cursor: pointer; }
  .theme:hover {
    opacity: 0.9; }

.borderedtables > table, .borderedtables td, .borderedtables th {
  border: 1px solid gray;
  background: gray10; }
.borderedtables > table, .borderedtables tr:nth-child(odd) {
  background-color: #f0f0f0; }
.borderedtables > table, .borderedtables tr:nth-child(0) {
  background-color: #e0e0e0; }
