@import url("https://fonts.googleapis.com/css?family=Codystar:300&display=swap");
div.animatedButton {
  display: inherit;
}
@keyframes button-animation {
  from {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  40% {
    transform: matrix3d(1.04, 0, 0, 0, 0, 1.04, 0, 0, 0, 0, 1.04, 0, 0, 0, 0, 1);
  }
  60% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 0.953, -0.5, 0, 0, 0.5, 0.953, 0, 0, 0, 0, 1);
  }
  80% {
    transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1);
  }
  to {
    transform: scale(1.08);
  }
}
div.animatedButton .animated {
  animation-name: button-animation;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-play-state: running;
}
div.animatedButton .active {
  transform: scale(1.08);
}

@font-face {
  font-family: Clip;
  src: url("https://acupoftee.github.io/fonts/Clip.ttf");
}
p.feeling-blue,
span.feeling-blue {
  font-family: "Codystar";
  font-size: 112%;
  text-align: center;
  font-weight: bold;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    color: #5f4b8b;
    text-shadow: 0 0 10px #00fff2, 0 0 20px #00fff2, 0 0 30px #00fff2, 0 0 40px #00fff2, 0 0 50px #00fff2, 0 0 60px #00fff2, 0 0 70px #00fff2, 0 0 90px #00fff2;
  }
  to {
    color: gray;
    text-shadow: 0 0 20px #00fff2, 0 0 30px #00fff2, 0 0 40px #00fff2, 0 0 50px #00fff2, 0 0 60px #00fff2, 0 0 70px #00fff2, 0 0 80px #00fff2, 0 1 90px #00fff2;
  }
}
p.glow,
span.glow {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c01553;
  font-family: Clip;
  font-size: 90%;
  animation: shine 2s alternate infinite;
}
@keyframes shine {
  0% {
    color: #f0a1bf;
    text-shadow: 0 0 3px #ffe6ff, 0 0 3px #ff65bd, -1px 1px 1px #ff65bd, 1px 1px 5px #ff65bd, 0 -3px 5px #ff2483, 0 1px 5px #ff2483;
  }
  100% {
    color: #ffe6ff;
    text-shadow: 0 0 6px #ffe6ff, 0 0 5px #ff65bd, -2px 1px 3px #ff65bd, 2px 1px 10px #ff65bd, 0 -5px 8px #ff2483, 0 2px 10px #ff2483;
  }
}
p.flaming,
span.flaming {
  font-family: felt-tip-woman;
  font-weight: 500;
  font-size: 125%;
  overflow: hidden;
}
p.flaming:before,
span.flaming:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
p.flaming .blazing,
span.flaming .blazing {
  display: inline-block;
  margin: 0;
  color: #ff7300;
  outline: none;
  vertical-align: middle;
  text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 4px -5px 6px yellow, -4px -10px 10px yellow, 0 -10px 30px yellow;
  animation: 2s Blazing infinite alternate linear;
}
@keyframes Blazing {
  0% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow, 0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
  }
  25% {
    text-shadow: 0 3px 20px red, 0 0 30px red, 0 0 20px orange, 0 0 5px yellow, -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow;
  }
  50% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange, -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow, 2px -20px 30px rgba(255, 255, 0, 0.5);
  }
  75% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange, 3px -5px 5px yellow, -4px -10px 10px yellow, 2px -20px 30px rgba(255, 255, 0, 0.5), 0px -25px 40px rgba(255, 255, 0, 0);
  }
  100% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow, 0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
  }
}
p.gold,
span.gold {
  position: relative;
  font-family: matt-b, sans-serif;
  z-index: 2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bfaa40;
  text-shadow: 1px 1px #ac9939, 2px 2px #998833, 3px 3px #86772d, 4px 4px #82742b, 4px 4px 10px rgba(0, 0, 0, 0.7);
}
p.flicker,
span.flicker {
  font-family: reklame-script;
  margin: 0px auto;
  letter-spacing: 0.25rem;
  overflow: hidden;
  color: #45689a;
  width: 100%;
  z-index: 5;
  text-shadow: none;
  animation: flicker 3s linear infinite;
}
@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 0.99;
    text-shadow: 1px -1px 0 rgba(255, 255, 255, 0.3), 1px -1px 0 rgba(255, 255, 255, 0.3), -1px 1px 0 rgba(255, 255, 255, 0.2), 1px 1px 0 rgba(255, 255, 255, 0.4), 0 -2px 3px, 0 0 2px, 0 0 5px #45689a, 0 0 2px #763374, 0 0 2px #45689a;
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.4;
    text-shadow: none;
  }
}

dirty-story div#dirtyStory {
  text-align: right;
  margin-right: 25px;
  background-repeat: repeat;
}
dirty-story div#dirtyStory div.redBoots {
  position: fixed;
  left: 0px;
  top: 4%;
  height: 95%;
}
dirty-story div#dirtyStory div.redBoots img {
  height: 100%;
}
dirty-story div#dirtyStory div.tab svg.tab text.tabLabel {
  stroke: none;
  font-family: chaloops;
  font-weight: 700;
}
dirty-story div#dirtyStory div#dirtyStoryText {
  background-color: #fff;
  text-align: left;
  margin-right: 50px;
}
@media (max-height: 400px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 200px;
  }
}
@media only screen and (min-height: 199px) and (max-height: 250px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 120px;
  }
}
@media only screen and (min-height: 249px) and (max-height: 300px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 140px;
  }
}
@media only screen and (min-height: 299px) and (max-height: 350px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 160px;
  }
}
@media only screen and (min-height: 349px) and (max-height: 400px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 180px;
  }
}
@media only screen and (min-height: 399px) and (max-height: 450px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 200px;
  }
}
@media only screen and (min-height: 449px) and (max-height: 500px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 220px;
  }
}
@media only screen and (min-height: 499px) and (max-height: 550px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 240px;
  }
}
@media only screen and (min-height: 549px) and (max-height: 600px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 260px;
  }
}
@media only screen and (min-height: 599px) and (max-height: 650px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 280px;
  }
}
@media only screen and (min-height: 649px) and (max-height: 700px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 300px;
  }
}
@media only screen and (min-height: 699px) and (max-height: 750px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 320px;
  }
}
@media only screen and (min-height: 749px) and (max-height: 800px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 340px;
  }
}
@media only screen and (min-height: 799px) and (max-height: 850px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 360px;
  }
}
@media only screen and (min-height: 849px) and (max-height: 900px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 380px;
  }
}
@media only screen and (min-height: 899px) and (max-height: 950px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 400px;
  }
}
@media only screen and (min-height: 949px) and (max-height: 1000px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 420px;
  }
}
@media only screen and (min-height: 999px) and (max-height: 1050px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 440px;
  }
}
@media only screen and (min-height: 1049px) and (max-height: 1100px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 460px;
  }
}
@media only screen and (min-height: 1099px) and (max-height: 1150px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 480px;
  }
}
@media only screen and (min-height: 1149px) and (max-height: 1200px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 500px;
  }
}
@media only screen and (min-height: 1199px) and (max-height: 1250px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 520px;
  }
}
@media only screen and (min-height: 1249px) and (max-height: 1300px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 540px;
  }
}
@media only screen and (min-height: 1299px) and (max-height: 1350px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 560px;
  }
}
@media only screen and (min-height: 1349px) and (max-height: 1400px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 580px;
  }
}
@media only screen and (min-height: 1399px) and (max-height: 1450px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 600px;
  }
}
@media only screen and (min-height: 1449px) and (max-height: 1500px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 620px;
  }
}
@media only screen and (min-height: 1499px) and (max-height: 1550px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 640px;
  }
}
@media only screen and (min-height: 1549px) and (max-height: 1600px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 660px;
  }
}
@media only screen and (min-height: 1599px) and (max-height: 1650px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 680px;
  }
}
@media only screen and (min-height: 1649px) and (max-height: 1700px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 700px;
  }
}
@media only screen and (min-height: 1699px) and (max-height: 1750px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 720px;
  }
}
@media only screen and (min-height: 1749px) and (max-height: 1800px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 740px;
  }
}
@media only screen and (min-height: 1799px) and (max-height: 1850px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 760px;
  }
}
@media only screen and (min-height: 1849px) and (max-height: 1900px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 780px;
  }
}
@media only screen and (min-height: 1899px) and (max-height: 1950px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 800px;
  }
}
@media only screen and (min-height: 1949px) and (max-height: 2000px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 820px;
  }
}
@media only screen and (min-height: 1999px) and (max-height: 2050px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 840px;
  }
}
@media (min-height: 2099px) {
  dirty-story div#dirtyStory div#dirtyStoryText {
    margin-left: 830px;
  }
}
dirty-story div#dirtyStory div#dirtyStoryText p {
  font-family: museo-sans;
  font-weight: 500;
  color: black;
}
dirty-story div#dirtyStory div#personalize {
  text-align: left;
  width: 375px;
  position: relative;
  top: -20px;
}
dirty-story div#dirtyStory div#personalize > div:first-child {
  padding: 0 20px;
  margin-right: 15px;
}
dirty-story div#dirtyStory div#personalize > div:first-child div h2 {
  margin-left: 100px;
  font-family: coquette;
  font-weight: 700;
  font-size: 18px;
  color: #763374;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#hot-words div.effectList {
  margin: 10px;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#hot-words p.specialWord {
  color: #000;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#name-change input {
  margin-left: 10%;
  margin-right: 7%;
  width: 83%;
  color: #000;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#name-change p {
  margin-left: 10%;
  margin-right: 7%;
  width: 83%;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#dirty-story-read-options {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#dirty-story-read-options h2 {
  margin: 0px;
  font-family: coquette;
  font-weight: 700;
  font-size: 18px;
  color: #763374;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#dirty-story-read-options div.font-sizes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#dirty-story-read-options div.font-sizes div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#dirty-story-read-options div.click-to-scroll {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#dirty-story-read-options div.click-to-scroll p {
  margin: 10px 10px;
  color: #000;
}
dirty-story div#dirtyStory div#personalize > div:first-child div#dirty-story-read-options div.click-to-scroll div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 10px 30px;
}
dirty-story div#dirtyStory div#personalize > div:first-child p,
dirty-story div#dirtyStory div#personalize > div:first-child label {
  font-family: reklame-script;
  font-weight: 700;
  font-size: 14px;
  margin: 5px 0px 0px 0px;
  color: #e55982;
}
dirty-story div#dirtyStory div#personalize > div:first-child p.customName,
dirty-story div#dirtyStory div#personalize > div:first-child label.customName {
  color: #a35776;
}
dirty-story div#dirtyStory div#personalize > div:first-child input {
  font-family: alexa-std;
  font-size: 16px;
}
dirty-story div#dirtyStory div#personalize div.doneLetters {
  margin-top: 10px;
  display: flex;
  flex-flow: row;
  align-items: flex-end;
  min-height: 45px;
  justify-content: center;
}
dirty-story div#dirtyStory div#personalize div.doneLetters img {
  margin-right: 2px;
}
dirty-story star-wars-tab div.tab svg.tab text.starWarsButton {
  font-family: alexa-std;
  font-size: 20px;
}
dirty-story #animatedStoryList {
  position: absolute;
  top: 0px;
  overflow: hidden;
  z-index: 50;
}

div.dirtyStoryList {
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
@media only screen and (min-aspect-ratio: 3/2) and (max-width: 1050px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds@0.25x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1050px) and (max-width: 1400px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds@0.33x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1400px) and (max-width: 2200px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds@0.5x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 2200px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (max-height: 712px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds@0.25x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 712px) and (max-height: 949px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds@0.33x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 950px) and (max-height: 1424px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds@0.5x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1425px) {
  div.dirtyStoryList {
    background-image: url("/images/pink-clouds.jpg");
  }
}
div.dirtyStoryList div.typewriterImageDiv {
  position: fixed;
  width: 30%;
  max-width: 500px;
  display: inline-block;
  top: 50px;
}
@media only screen and (max-width: 1399px) {
  div.dirtyStoryList div.typewriterImageDiv {
    min-width: 200px;
  }
}
@media only screen and (min-width: 1400px) {
  div.dirtyStoryList div.typewriterImageDiv {
    min-width: 300px;
  }
}
div.dirtyStoryList div.backArrow {
  position: fixed;
  width: 20%;
  max-width: 350px;
  display: inline-block;
  bottom: 20px;
  left: 50px;
}
div.dirtyStoryList div#dirtyStories {
  position: relative;
  text-align: right;
  display: inline-block;
}
div.dirtyStoryList div#dirtyStories dirty-story-link {
  display: inline-flex;
}
div.dirtyStoryList div#dirtyStories dirty-story-link div.dirtyStoryLink {
  text-align: left;
  margin-right: auto;
  max-height: 50px;
  display: inline-block;
}
@media only screen and (max-width: 1799px) {
  div.dirtyStoryList div#dirtyStories dirty-story-link div.dirtyStoryLink {
    margin-left: 30%;
  }
}
@media only screen and (min-width: 1800px) {
  div.dirtyStoryList div#dirtyStories dirty-story-link div.dirtyStoryLink {
    margin-left: 600px;
  }
}
div.dirtyStoryList div#dirtyStories dirty-story-link div.dirtyStoryLink svg.clickShield {
  position: relative;
  top: -40px;
  z-index: 100;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(1) div.storyLink {
  top: 75px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(2) div.storyLink {
  top: 125px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(3) div.storyLink {
  top: 175px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(4) div.storyLink {
  top: 225px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(5) div.storyLink {
  top: 275px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(6) div.storyLink {
  top: 325px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(7) div.storyLink {
  top: 375px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(8) div.storyLink {
  top: 425px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(9) div.storyLink {
  top: 475px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(10) div.storyLink {
  top: 525px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(11) div.storyLink {
  top: 575px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(12) div.storyLink {
  top: 625px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(13) div.storyLink {
  top: 675px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(14) div.storyLink {
  top: 725px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(15) div.storyLink {
  top: 775px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(16) div.storyLink {
  top: 825px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(17) div.storyLink {
  top: 875px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(18) div.storyLink {
  top: 925px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(19) div.storyLink {
  top: 975px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(20) div.storyLink {
  top: 1025px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(21) div.storyLink {
  top: 1075px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(22) div.storyLink {
  top: 1125px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(23) div.storyLink {
  top: 1175px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(24) div.storyLink {
  top: 1225px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(25) div.storyLink {
  top: 1275px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(26) div.storyLink {
  top: 1325px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(27) div.storyLink {
  top: 1375px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(28) div.storyLink {
  top: 1425px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(29) div.storyLink {
  top: 1475px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(30) div.storyLink {
  top: 1525px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(31) div.storyLink {
  top: 1575px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(32) div.storyLink {
  top: 1625px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(33) div.storyLink {
  top: 1675px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(34) div.storyLink {
  top: 1725px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(35) div.storyLink {
  top: 1775px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(36) div.storyLink {
  top: 1825px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(37) div.storyLink {
  top: 1875px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(38) div.storyLink {
  top: 1925px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(39) div.storyLink {
  top: 1975px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(40) div.storyLink {
  top: 2025px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(41) div.storyLink {
  top: 2075px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(42) div.storyLink {
  top: 2125px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(43) div.storyLink {
  top: 2175px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(44) div.storyLink {
  top: 2225px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(45) div.storyLink {
  top: 2275px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(46) div.storyLink {
  top: 2325px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(47) div.storyLink {
  top: 2375px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(48) div.storyLink {
  top: 2425px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(49) div.storyLink {
  top: 2475px;
}
div.dirtyStoryList div#dirtyStories story-link:nth-child(50) div.storyLink {
  top: 2525px;
}

div#animatedStoryList {
  box-sizing: border-box;
  margin: 0px;
  border: 0px solid rgba(0, 0, 0, 0);
  display: block;
}
div#animatedStoryList * div {
  box-sizing: border-box;
  margin: 0px;
  border: 0px solid rgba(0, 0, 0, 0);
}

div#selfies {
  position: absolute;
  top: 0px;
  left: 0px;
  min-width: 100%;
  min-height: 100%;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (min-aspect-ratio: 7/5) and (max-width: 1387px) {
  div#selfies {
    background-image: url("/images/purple-smoke@0.33x.png");
  }
}
@media only screen and (min-aspect-ratio: 7/5) and (min-width: 1387px) and (max-width: 2101px) {
  div#selfies {
    background-image: url("/images/purple-smoke@0.5x.png");
  }
}
@media only screen and (min-aspect-ratio: 7/5) and (min-width: 2101px) and (max-width: 3152px) {
  div#selfies {
    background-image: url("/images/purple-smoke@0.75x.png");
  }
}
@media only screen and (min-aspect-ratio: 7/5) and (min-width: 3152px) {
  div#selfies {
    background-image: url("/images/purple-smoke.png");
  }
}
@media only screen and (max-aspect-ratio: 7/5) and (max-height: 1000px) {
  div#selfies {
    background-image: url("/images/purple-smoke@0.33x.png");
  }
}
@media only screen and (max-aspect-ratio: 7/5) and (min-height: 1000px) and (max-height: 2100px) {
  div#selfies {
    background-image: url("/images/purple-smoke@0.5x.png");
  }
}
@media only screen and (max-aspect-ratio: 7/5) and (min-height: 2100px) and (max-height: 2272px) {
  div#selfies {
    background-image: url("/images/purple-smoke@0.75x.png");
  }
}
@media only screen and (max-aspect-ratio: 7/5) and (min-height: 2272px) {
  div#selfies {
    background-image: url("/images/purple-smoke.png");
  }
}
div#selfies div.headerDiv {
  position: absolute;
  top: 0px;
  width: 100%;
  text-align: center;
}
div#selfies div.headerDiv h2 {
  font-family: duos-brush;
  font-size: 64px;
  font-weight: 400;
  color: #c01553;
  margin: 10px auto;
  z-index: 10;
}

div#starWarsStory {
  text-align: center;
  background: #000;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transform-origin: center top;
  transform-style: preserve-3d;
  perspective-origin: center-top;
  overflow: hidden;
  perspective: 350px;
}
div#starWarsStory.read {
  background-size: cover;
  background-attachment: fixed;
}
div#starWarsStory.read div.story {
  display: none;
}
@media only screen and (max-aspect-ratio: 3/2) and (max-height: calc(0.2 * 3648px)) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.2x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (max-width: calc(0.2 * 5472px)) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.2x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 729.6px) and (max-height: 912px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.2x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1094.4px) and (max-width: 1368px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.2x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 912px) and (max-height: 1094.4px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.25x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1368px) and (max-width: 1641.6px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.25x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1094.4px) and (max-height: 1276.8px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.3x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1641.6px) and (max-width: 1915.2px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.3x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1276.8px) and (max-height: 1459.2px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.35x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1915.2px) and (max-width: 2188.8px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.35x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1459.2px) and (max-height: 1824px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.4x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 2188.8px) and (max-width: 2736px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.4x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1824px) and (max-height: 2736px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.5x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 2736px) and (max-width: 4104px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.5x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 2736px) and (max-height: 3648px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.75x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 4104px) and (max-width: 5472px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@0.75x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 3648px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@1x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-height: 5476px) {
  div#starWarsStory.read {
    background-image: url("../images/smoking@1x.jpg");
  }
}
div#starWarsStory figure.story {
  width: 90%;
  margin: 0px auto;
  text-align: left;
  overflow: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
}
div#starWarsStory figure.story h1 {
  color: yellow;
  font-family: museo-sans;
  font-weight: 500;
  text-align: center;
  font-size: 3em;
}
div#starWarsStory figure.story p {
  color: yellow;
  font-family: museo-sans;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0px 0px 5px 0px;
}
div#starWarsStory div.home p {
  font-family: variex;
  font-size: 36px;
  color: #f0a1bf;
  text-shadow: 1px 0px 0px #d2738f;
  cursor: pointer;
}

div#stories div.header {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
div#stories div.header img {
  max-width: 60%;
}
div#stories div.storyList {
  margin: 20px auto;
  width: calc(100% - 200px);
  display: flex;
  flex-flow: row wrap;
}
div#stories div.storyList div.story-select-margin {
  background-color: #ccc;
  padding: 10px 10px;
  border: 1px solid #888;
  margin: 20px;
}
div#stories div.storyList div.story-select-margin div.story-select {
  color: black;
  background: #fff;
  width: 300px;
  padding: 10px 15px 20px 15px;
  height: calc(100% - 30px);
  border: 1px solid #999;
  text-align: left;
  position: relative;
  top: 0px;
  left: 0px;
}
div#stories div.storyList div.story-select-margin div.story-select h2 {
  font-family: oxtail;
  font-weight: 700;
  font-size: 1.4em;
  text-align: left;
  margin-bottom: 0px;
  margin-left: 30px;
}
div#stories div.storyList div.story-select-margin div.story-select p {
  font-family: museo-sans;
  font-weight: 500;
  font-size: 1em;
  margin-top: 10px;
}
div#stories div.storyList div.story-select-margin div.story-select div.click-shield {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 10;
}
div#stories div.storyList div.story-select-margin div.story-select div.click-shield.hilight {
  background-image: url("../images/textured-blue.png");
  background-size: cover;
  background-blend-mode: multiply;
  opacity: 0.5;
}

div#tidbit {
  background-size: cover;
  background-attachment: fixed;
  min-height: 100%;
  min-width: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media only screen and (min-aspect-ratio: 3/2) and (max-width: 600px) {
  div#tidbit {
    background-image: url("/images/granite@0.1x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 600px) and (max-width: 1497px) {
  div#tidbit {
    background-image: url("/images/granite@0.25x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1497px) and (max-width: 1976px) {
  div#tidbit {
    background-image: url("/images/granite@0.33x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1976px) and (max-width: 2994px) {
  div#tidbit {
    background-image: url("/images/granite@0.5x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 2994px) {
  div#tidbit {
    background-image: url("/mages/granite@0.75x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (max-height: 400px) {
  div#tidbit {
    background-image: url("/images/granite@0.1x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 400px) and (max-height: 997px) {
  div#tidbit {
    background-image: url("/images/granite@0.25x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 997px) and (max-height: 1316px) {
  div#tidbit {
    background-image: url("/images/granite@0.33x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1316px) and (max-height: 1994px) {
  div#tidbit {
    background-image: url("/images/granite@0.5x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1994px) {
  div#tidbit {
    background-image: url("/mages/granite@0.75x.jpg");
  }
}
div#tidbit h1 {
  background-image: url("/images/blue-background.jpeg");
  background-size: cover;
  font-family: dogma-bold-script;
  font-weight: 700;
  color: rgba(0, 0, 0, 0);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 96px;
  margin: 25px 0px 0px 20%;
}
div#tidbit img {
  max-width: 70%;
  align-self: center;
  margin: 0%;
}
div#tidbit h2 {
  background-image: url("/images/blue-background.jpeg");
  background-size: cover;
  font-family: duos-brush;
  font-weight: 900;
  color: rgba(0, 0, 0, 0);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 36px;
  margin: 20px auto;
  align-self: center;
}
div#tidbit div {
  display: flex;
  flex-flow: column nowrap;
}
div#tidbit div.img {
  align-self: center;
  width: 70%;
}
div#tidbit div.img img {
  width: 100%;
  max-width: 1100px;
}
div#tidbit div.text {
  z-index: 49;
  margin: 0px 10%;
}
div#tidbit div.text p {
  font-family: chaloops;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: #009473;
  margin: 15px auto;
  align-self: flex-start;
}
div#tidbit div.text p:first-of-type {
  margin-top: 0px;
}
div#tidbit div.text div.overlay {
  display: flex;
  flex-flow: column nowrap;
}
div#tidbit div.text div.overlay p {
  z-index: 50;
  margin: 0px;
  mix-blend-mode: revert;
  animation: brighten alternate linear infinite 0.5s;
}
@keyframes brighten {
  from {
    color: rgba(73, 185, 96, 0.8);
  }
  to {
    color: rgba(73, 185, 96, 0.5);
  }
}

div#storyContainer div#story {
  width: calc(800px + 20%);
  display: flex;
  flex-direction: column;
  margin: 0px auto;
}
div#storyContainer div#story h1 {
  font-family: oxtail;
  font-weight: 700;
  font-size: 2.5em;
  text-align: center;
}
div#storyContainer div#story p {
  font-family: museo-sans;
  font-weight: 500px;
  font-size: 1.1em;
  width: 100%;
}
div#storyContainer div#story p.sogi {
  font-family: coquette;
  font-weight: 400;
  font-size: 1.2em;
  margin-left: 30px;
}
div#storyContainer div#story p.sogi:nth-of-type(3n) {
  margin-top: 0px;
}
div#storyContainer div#story p.sogi:nth-of-type(3n + 1) {
  margin-bottom: 0px;
}
div#storyContainer div#story p.sogi:nth-of-type(3n + 2) {
  margin-top: 0px;
  margin-bottom: 0px;
}

body {
  margin: 0px;
  height: 100%;
}
body div#page-body {
  margin: 0px;
  padding: 0px;
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  min-height: 100%;
  width: 100%;
}
body div#page-body div.banner-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
}
body div#page-body div.banner-wrapper div.banner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-basis: 0;
  overflow: hidden;
  justify-items: start;
  justify-content: start;
  width: 500000px;
}
body div#page-body div.banner-wrapper div.banner p.banner-content {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.8;
  font-family: alexa-std;
  color: #16151d;
  font-size: 2em;
  padding: 2px 5px;
  margin: 0px;
}
body div#page-body a.download-code {
  position: fixed;
  right: 2%;
  bottom: 5%;
  font-family: alexa-std;
  font-weight: 400;
  font-size: 1.6em;
  color: #16151d;
}
body div#page-body.main {
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (min-aspect-ratio: 3/2) and (max-width: 1050px) {
  body div#page-body.main {
    background-image: url("/images/background@0.25x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1050px) and (max-width: 1400px) {
  body div#page-body.main {
    background-image: url("/images/background@0.33x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 1400px) and (max-width: 2200px) {
  body div#page-body.main {
    background-image: url("/images/background@0.5x.jpg");
  }
}
@media only screen and (min-aspect-ratio: 3/2) and (min-width: 2200px) {
  body div#page-body.main {
    background-image: url("/images/background.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (max-height: 712px) {
  body div#page-body.main {
    background-image: url("/images/background@0.25x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 712px) and (max-height: 949px) {
  body div#page-body.main {
    background-image: url("/images/background@0.33x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 950px) and (max-height: 1424px) {
  body div#page-body.main {
    background-image: url("/images/background@0.5x.jpg");
  }
}
@media only screen and (max-aspect-ratio: 3/2) and (min-height: 1425px) {
  body div#page-body.main {
    background-image: url("/images/background.jpg");
  }
}
body div#page-body.dirtyStory {
  background: #fff;
}
body div#page-body.story {
  background-image: url("/images/story-background.png");
  background-blend-mode: overlay;
  background-color: #edf1ff;
  background-repeat: repeat;
}
body div#page-body.stories {
  background-image: url("/images/story-background.png");
  background-blend-mode: overlay;
  background-color: #edf1ff;
  background-repeat: repeat;
}
body div#page-body div.menuBar {
  float: right;
  width: 860px;
}
body div#page-body div.menuBar div {
  position: relative;
}
body div#page-body div.menuBar div animated-button:nth-child(2n+1) {
  position: absolute;
  left: 0px;
}
body div#page-body div.menuBar div animated-button:nth-child(2n) {
  position: absolute;
  left: 425px;
}
body div#page-body div.menuBar div animated-button:nth-child(1) {
  top: 300px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(2) {
  top: 300px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(3) {
  top: 420px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(4) {
  top: 420px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(5) {
  top: 540px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(6) {
  top: 540px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(7) {
  top: 660px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(8) {
  top: 660px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(9) {
  top: 780px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(10) {
  top: 780px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(11) {
  top: 900px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(12) {
  top: 900px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(13) {
  top: 1020px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(14) {
  top: 1020px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(15) {
  top: 1140px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(16) {
  top: 1140px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(17) {
  top: 1260px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(18) {
  top: 1260px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(19) {
  top: 1380px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(20) {
  top: 1380px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(21) {
  top: 1500px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(22) {
  top: 1500px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(23) {
  top: 1620px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(24) {
  top: 1620px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(25) {
  top: 1740px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(26) {
  top: 1740px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(27) {
  top: 1860px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(28) {
  top: 1860px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(29) {
  top: 1980px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(30) {
  top: 1980px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(31) {
  top: 2100px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(32) {
  top: 2100px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(33) {
  top: 2220px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(34) {
  top: 2220px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(35) {
  top: 2340px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(36) {
  top: 2340px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(37) {
  top: 2460px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(38) {
  top: 2460px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(39) {
  top: 2580px;
  cursor: pointer;
}
body div#page-body div.menuBar div animated-button:nth-child(40) {
  top: 2580px;
  cursor: pointer;
}
body div#page-body div#backButton {
  position: fixed;
  display: flex;
  top: 0px;
  right: 20px;
}
body div#page-body div#backButton p {
  line-height: 20px;
  font-family: reklame-script;
  font-weight: 400;
  font-size: 20px;
  margin-left: auto;
  padding: 5px 10px;
  color: #c01553;
  cursor: pointer;
}
body div#page-body div#backButton p:hover {
  background: rgba(200, 200, 200, 0.5);
}

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