/* misc. */

body {
  /*background-color: #fff9f2;*/
  color: #030717;
  font-family: 'TrixieCyrG-Plain';
  background-image: url('digitalwrldlighter.png');
  background-size: cover; /* makes the image cover the entire background */
  background-repeat: no-repeat;
  background-position: center 0px;
}

h1 {
  text-align: center;
  text-shadow: 2px 2px 4px rgba(219, 203, 59, 0.5);
}

p {
  font-size: 30px;
  text-shadow: 2px 2px 4px rgba(130, 189, 55, 0.5);
}

/* bouncy text! */

.bounce mark {
  z-index: 99;
  animation: bounce-anim 2s infinite;
  animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1);
  width:auto;
  background: none;
  color: #030717;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bounce mark:nth-child(1) {
  animation-delay: 0s;
  display: inline-block;
}

.bounce mark:nth-child(2) {
  animation-delay: 0.2s;
  display: inline-block;
}

.bounce mark:nth-child(3) {
  animation-delay: 0.4s;
  display: inline-block;
}

.bounce mark:nth-child(4) {
  animation-delay: 0.6s;
  display: inline-block;
}

.bounce mark:nth-child(5) {
  animation-delay: 0.8s;
  display: inline-block;
}

.bounce mark:nth-child(6) {
  animation-delay: 1s;
  display: inline-block;
}

.bounce mark:nth-child(7) {
  animation-delay: 1.2s;
  display: inline-block;
}

.bounce mark:nth-child(8) {
  animation-delay: 1.4s;
  display: inline-block;
}

.bounce mark:nth-child(9) {
  animation-delay: 1.6s;
  display: inline-block;
}

.bounce mark:nth-child(10) {
  animation-delay: 1.8s;
  display: inline-block;
}

.bounce mark:nth-child(11) {
  animation-delay: 2s;
  display: inline-block;
}

.bounce mark:nth-child(12) {
  animation-delay: 2.2s;
  display: inline-block;
}

.bounce mark:nth-child(13) {
  animation-delay: 2.4s;
  display: inline-block;
}

.bounce mark:nth-child(14) {
  animation-delay: 2.6s;
  display: inline-block;
}

@keyframes bounce-anim {
  0% {
    transform: scale(1, 1) translateY(0);
  }

  10% {
    transform: scale(1.1, .9) translateY(0);
  }

  30% {
    transform: scale(.9, 1.1) translateY(-30px);
  }

  50% {
    transform: scale(1.05, .95) translateY(0);
  }

  60% {
    transform: scale(1, 1) translateY(-4px);
  }

  100% {
    transform: scale(1, 1) translateY(0);
  }
}

/* text hover! */

.text:hover {
  letter-spacing: 7px;
}