:root {
  --color-bg: #FFFFFF;
  --color-fg: #696969;
  --color-fg-light: #c9c9c9;
  --color-primary: #FFBB00;
  --color-primary-dark: #FF8800;
  --color-secondary: #FD73BF;
  --color-secondary-dark: #BD439F;
}
* {
  box-sizing: border-box;
}
code{white-space: pre;}
body {
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-family: monospace;
  font-size: 24px;
  margin: 0;
  padding: 0;
}
.background {
  background-image: -webkit-linear-gradient(100deg, var(--color-primary-dark) 1%, var(--color-primary) 24%, var(--color-bg) 24%);
  height: 100%;
  min-height: 100vh;
  position: relative;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 100%;
  padding-top: 8em;
}
.container {
  min-height: 300px;
  padding: 1em;
  z-index: 2;
}
.nav {
  display: block;
  font-family: sans-serif;
  font-weight: bold;
  flex-width: 100%;
  left: 1em;
  min-height: 0;
  padding-left: 0;
  position: absolute;
  top: 0em;
  width: 400px;
}
.nav a {
  text-decoration: none;
}
.nav h1 {
  color: var(--color-primary);
  font-size: 1.5em;
  transform: skewY(-10deg);
}
.nav h1:hover {
  background: linear-gradient(to right, var(--color-primary) 50%, var(--color-secondary) 60%, var(--color-primary) 70%);
  background-size: 200% auto;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-animation: shine 1.5s 1 ease-out;
  -moz-animation: shine 1.5s 1 ease-out;
  animation: shine 1.5s 1 ease-out;
}
@-webkit-keyframes shine {
  to {
    background-position: 200% center;
  }
}
@-moz-keyframes shine {
  to {
    background-position: 200% center;
  }
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.nav ul {
  display: inline-block;
  padding-left: 0;
  transform: skewY(-10deg);
  margin: 0;
}
.nav ul li {
  display: inline-block;
  padding: 0 1em 0 0;
  text-align: center;
}
.nav li a {
  color: var(--color-fg-light);
  display: inline-block;
  font-size: 0.8em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s cubic-bezier(0.55, 0, 0.55, 0.2), color .2s cubic-bezier(0.55, 0, 0.55, 0.2);
  transform-origin: 50% 90%;
}
.nav li a:hover {
  color: var(--color-secondary);
  transform: scale(1.1);
}
.content {
  background-image: -webkit-linear-gradient(270deg, rgba(255,255,255,255) 60%, rgba(255,255,255,0) 108%);
  border-radius: 4px;
  height: 100%;
  margin: 1em;
  max-width: 100%;
  padding: 0.5em 1em;
}
.content img {
  width: 100%;
}
@media (min-width: 1000px) {
  body {
    font-size: 16px;
  }
  .wrapper {
    max-width: 640px;
  }
  .content {
    max-width: 640px;
  }
  .content img {
    width: 100%;
    max-width: 640px;
  }
}
h1 {
  color: var(--color-secondary);
  font-family: sans-serif;
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 0.5em 0;
  text-transform: uppercase;
}
h3.date {
  color: transparent;
  font-family: sans-serif;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-primary-dark);
}
.content h1 {
	color: transparent;
	font-size: 3em;
	position: relative;
  text-shadow: var(--color-primary) -4px 4px;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: var(--color-secondary);
}
.content a {
  color: var(--color-secondary);
}
.content a:visited {
  color: var(--color-primary-dark);
}
.content a:hover {
  text-shadow: var(--color-primary) -1px 2px;
}
.content-hidden {
  display: none;
}
ul {
  padding-left: 1em;
}
.nav ul {
  list-style: none;
}
.content ul {
}
li {
  margin: 0 0 0.5em 0;
}
li ul {
  list-style: url('gem-green.png');
  margin: 0.5em 0 0 0;
  padding: 0 0 0 1em;
}
li ul li {
}
button {
  font-family: 'fool', sans-serif;
  display: none;
}
