.title {
	-webkit-animation: scale-in-title 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 0s both;
	        animation: scale-in-title 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 0s both;
}

#bubble {
	-webkit-animation: scale-in-bubble 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 0.2s both;
	        animation: scale-in-bubble 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 0.2s both;
}

#dino {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.8s both;
	        animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.8s both;
}

#city {
	-webkit-animation: fade-in-city 0.5s steps(10, end) 1.8s both;
	        animation: fade-in-city 0.5s steps(10, end) 1.8s both;
}

#containerOne {
	-webkit-animation: scale-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 2.4s both;
	        animation: scale-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 2.4s both;
}

#containerTwo {
	-webkit-animation: scale-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 2.6s both;
	        animation: scale-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 2.6s both;
}

#containerThree {
	-webkit-animation: scale-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 2.8s both;
	        animation: scale-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 2.8s both;
}

#doodlehearts {
	-webkit-animation: fade-in 0.5s steps(10, end) 0.4s both;
	        animation: fade-in 0.5s steps(10, end) 0.4s both;
}

#rainstars {
	-webkit-animation: fade-in 0.5s steps(10, end) 0.4s both;
	        animation: fade-in 0.5s steps(10, end) 0.4s both;
}

#threehearts {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.2s both;
	        animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.2s both;
}

#headphones {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.2s both;
	        animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.2s both;
}

#diamond {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.4s both;
	        animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.4s both;
}

#smile {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.4s both;
	        animation: scale-in-center 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.4s both;
}

#radio {
	-webkit-animation: scale-in-radio 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.6s both;
	        animation: scale-in-radio 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.6s both;
}

#rainb {
	-webkit-animation: scale-in-rainbow 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.6s both;
	        animation: scale-in-rainbow 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) 1.6s both;
}

#miniradio {
	-webkit-animation: fade-in-full 0.5s steps(10, end) 3s both;
	        animation: fade-in-full 0.5s steps(10, end) 3s both;
}

#trailheart {
	-webkit-animation: fade-in-full 0.5s steps(10, end) 3.2s both;
	        animation: fade-in-full 0.5s steps(10, end) 3.2s both;
}

#back {
	-webkit-animation: fade-in-full 0.5s steps(10, end) 3.4s both;
	        animation: fade-in-full 0.5s steps(10, end) 3.4s both;
}

#disc {
	-webkit-animation: fade-in-full 0.5s steps(10, end) 3.6s both;
	        animation: fade-in-full 0.5s steps(10, end) 3.6s both;
}





@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

@-webkit-keyframes fade-in-city {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes fade-in-city {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}

@-webkit-keyframes fade-in-full {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-full {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}



@-webkit-keyframes scale-in-title {
  0% {
    -webkit-transform: scale(0) rotate(-10deg);
            transform: scale(0) rotate(-10deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(-10deg);
            transform: scale(1) rotate(-10deg);
    opacity: 1;
  }
}
@keyframes scale-in-title {
  0% {
    -webkit-transform: scale(0) rotate(-10deg);
            transform: scale(0) rotate(-10deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(-10deg);
            transform: scale(1) rotate(-10deg);
    opacity: 1;
  }
}



@-webkit-keyframes scale-in-bubble {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(45deg);
            transform: scale(1) rotate(45deg);
    opacity: 1;
  }
}
@keyframes scale-in-bubble {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(45deg);
            transform: scale(1) rotate(45deg);
    opacity: 1;
  }
}


@-webkit-keyframes scale-in-radio {
  0% {
    -webkit-transform: scale(0)  ;
            transform: scale(0)  ;
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(-1, 1)  ;
            transform: scale(-1, 1)  ;
    opacity: 0.7;
  }
}
@keyframes scale-in-radio {
  0% {
    -webkit-transform: scale(0)  ;
            transform: scale(0)  ;
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(-1, 1)  ;
            transform: scale(-1, 1)  ;
    opacity: 0.7;
  }
}


@-webkit-keyframes scale-in-rainbow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7;
  }
}
@keyframes scale-in-rainbow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7;
  }
}


@-webkit-keyframes scale-in-bottom {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
}
@keyframes scale-in-bottom {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
}