@-webkit-keyframes jumping {
  50% {
    top: 0;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    top: -50px;
    -webkit-box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
            box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
  }
}
@-moz-keyframes jumping {
  50% {
    top: 0;
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    top: -50px;
    -moz-box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
         box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
  }
}
@-o-keyframes jumping {
  50% {
    top: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    top: -50px;
    box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
  }
}
@keyframes jumping {
  50% {
    top: 0;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
       -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    top: -50px;
    -webkit-box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
            box-shadow: 0 120px 20px rgba(0, 0, 0, 0.15);
  }
}
@-webkit-keyframes eyemove {
  0%,
  10% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
  }
  90%,
  100% {
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
@-moz-keyframes eyemove {
  0%,
  10% {
    -moz-transform: translate(50%);
         transform: translate(50%);
  }
  90%,
  100% {
    -moz-transform: translate(-50%);
         transform: translate(-50%);
  }
}
@-o-keyframes eyemove {
  0%,
  10% {
    -o-transform: translate(50%);
       transform: translate(50%);
  }
  90%,
  100% {
    -o-transform: translate(-50%);
       transform: translate(-50%);
  }
}
@keyframes eyemove {
  0%,
  10% {
    -webkit-transform: translate(50%);
       -moz-transform: translate(50%);
         -o-transform: translate(50%);
            transform: translate(50%);
  }
  90%,
  100% {
    -webkit-transform: translate(-50%);
       -moz-transform: translate(-50%);
         -o-transform: translate(-50%);
            transform: translate(-50%);
  }
}
html,
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #db4d6d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.monsterText {
  color: #fff;
}
.monsterText h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
}
.monsterText h3 {
  font-size: 24px;
  font-weight: 500;
}
.monster {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  background: #e55a54;
  margin: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  -webkit-animation: jumping 0.8s ease infinite alternate;
     -moz-animation: jumping 0.8s ease infinite alternate;
       -o-animation: jumping 0.8s ease infinite alternate;
          animation: jumping 0.8s ease infinite alternate;
}
.monster::before,
.monster::after {
  content: "";
  display: block;
  width: 20%;
  height: 10px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  background-color: #fff;
  position: absolute;
  top: -10px;
  left: 50%;
}
.monster::before {
  -webkit-transform: translateX(-70%) rotate(45deg);
     -moz-transform: translateX(-70%) rotate(45deg);
      -ms-transform: translateX(-70%) rotate(45deg);
       -o-transform: translateX(-70%) rotate(45deg);
          transform: translateX(-70%) rotate(45deg);
}
.monster::after {
  -webkit-transform: translateX(-30%) rotate(-45deg);
     -moz-transform: translateX(-30%) rotate(-45deg);
      -ms-transform: translateX(-30%) rotate(-45deg);
       -o-transform: translateX(-30%) rotate(-45deg);
          transform: translateX(-30%) rotate(-45deg);
}
.monster.blue {
  background-color: #0c4475;
  -webkit-animation-delay: 0.5s;
     -moz-animation-delay: 0.5s;
       -o-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.monster.blue .eye .eyeball {
  background-color: #e55a54;
}
.monster.blue .mouth {
  background-color: #e55a54;
}
.monster .eye {
  width: 40%;
  height: 40%;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background-color: #fff;
  margin: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.monster .eye .eyeball {
  width: 50%;
  height: 50%;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background: #0c4475;
  -webkit-animation: eyemove 1.6s infinite alternate;
     -moz-animation: eyemove 1.6s infinite alternate;
       -o-animation: eyemove 1.6s infinite alternate;
          animation: eyemove 1.6s infinite alternate;
}
.monster .mouth {
  width: 32%;
  height: 12px;
  -webkit-border-radius: 12px;
     -moz-border-radius: 12px;
          border-radius: 12px;
  background-color: #fff;
}
.pageLoading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c4475;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pageLoading.complete {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}
.pageLoading.complete .monster {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg) scale(0.1);
     -moz-transform: rotate(360deg) scale(0.1);
      -ms-transform: rotate(360deg) scale(0.1);
       -o-transform: rotate(360deg) scale(0.1);
          transform: rotate(360deg) scale(0.1);
}
.pageLoading .loading {
  width: 200px;
  height: 10px;
  background: #fff;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  margin-top: 50px;
  overflow: hidden;
}
.pageLoading .loading .bar {
  width: 0%;
  height: 100%;
  background: #e55a54;
}
/*# sourceMappingURL=./index.css.map */