@keyframes wave {
  0% {
    top: 8px;
  }
  50% {
    top: -8px;
  }
  100% {
    top: 8px;
  }
}
.wave {
  position: relative;
  animation: 800ms cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite both wave;
}

@keyframes panic {
  0% {
    top: 0px;
    left: 0px;
  }
  5% {
    top: -1px;
    left: 3px;
  }
  10% {
    top: 3px;
    left: -2px;
  }
  15% {
    top: -3px;
    left: 2px;
  }
  20% {
    top: -1px;
    left: -2px;
  }
  25% {
    top: 0px;
    left: 1px;
  }
  30% {
    top: -3px;
    left: -2px;
  }
  35% {
    top: 0px;
    left: -1px;
  }
  40% {
    top: 0px;
    left: -1px;
  }
  45% {
    top: -2px;
    left: 3px;
  }
  50% {
    top: 1px;
    left: 0px;
  }
  55% {
    top: -4px;
    left: -2px;
  }
  60% {
    top: -3px;
    left: -2px;
  }
  65% {
    top: 4px;
    left: -3px;
  }
  70% {
    top: -4px;
    left: 1px;
  }
  75% {
    top: -4px;
    left: 2px;
  }
  80% {
    top: 4px;
    left: -4px;
  }
  85% {
    top: -4px;
    left: -1px;
  }
  90% {
    top: 4px;
    left: -2px;
  }
  95% {
    top: 3px;
    left: 0px;
  }
}
.panic {
  position: relative;
  animation: 1000ms steps(1) infinite both panic;
}

body {
  /* grid lines
  background: 
      repeating-linear-gradient(0deg, $grid-blue, $grid-blue 1px, transparent 1px, transparent 32px),
      repeating-linear-gradient(90deg, $grid-blue, $grid-blue 1px, transparent 1px, transparent 32px),
      #FAF9F5;
  */
  /* grid dots */
  background: radial-gradient(circle 50px, rgba(0, 0, 240, 0.3), rgba(0, 0, 240, 0.3) 1px, transparent 1px, transparent 32px), #FAF9F5;
  background-size: 32px 32px;
  color: #080808;
  font-family: "Comic Sans MS";
  font-size: 20px;
  line-height: 32px;
  margin: 16px;
}

h1 {
  font-size: 32px;
  margin: 23px 0;
}

h2 {
  font-size: 28px;
  margin: 28px 0 4px 0;
}

h3 {
  font-size: 24px;
  margin: 28px 0 4px 0;
}

h4 {
  font-size: 20px;
  margin: 28px 0 4px 0;
}

p {
  margin: 0;
}
p + p {
  margin-top: 32px;
}

ol, ul {
  margin: 32px 0;
}

sup {
  line-height: 20px;
}

a {
  color: rgb(75, 74, 225);
}
a:visited {
  color: #8180ea;
}

img.inline {
  vertical-align: bottom;
}

blockquote {
  border-left: 2px solid rgb(75, 74, 225);
  margin: 32px;
  padding-left: 8px;
}

@media screen and (min-width: 1080px) {
  body {
    max-width: 800px;
    margin: 16px auto;
  }
}
.note-container {
  max-width: 40%;
}
.note-container.left {
  float: left;
  margin: 0 16px 16px 0;
}
.note-container.right {
  float: right;
  margin: 0 0 16px 16px;
}

.note {
  background: radial-gradient(ellipse at top left, transparent, transparent 55%, rgba(100, 100, 20, 0.2) 100%), radial-gradient(ellipse at bottom right, transparent, transparent 60%, rgba(255, 255, 255, 0.1) 100%), #FAFA80;
  padding: 8px;
}

@media screen and (min-width: 1080px) {
  .note-container {
    width: 0;
    height: 0;
    position: relative;
  }
  .note-container.left {
    margin: 0;
    right: 136px;
    transform: rotate(-7deg);
  }
  .note-container.right {
    margin: 0;
    transform: rotate(7deg);
  }
  .note {
    width: 100px;
  }
}
p.spoiler {
  color: rgb(75, 74, 225);
  background-color: rgb(75, 74, 225);
}
p.spoiler:hover {
  background-color: initial;
}

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