/*=== File 'cssexx.css' ======================================================*/
/*------------------------------- Bouncing ball ------------------------------*/
#bllbll{
  animation: mvx 3.05s linear 0s infinite alternate,
             mvy 3.40s linear 0s infinite alternate;
  background-color: #3673cf;
  border-radius: 50%;
  box-shadow: -5px -5px 5px rgba(0,0,0,.6) inset;
  height: 20px;
  position: absolute;
  width: 20px;
}
#blltbl{
  background-color: #61ab20;
  border: 1px solid #111;
  border-radius: 5px;
  box-shadow: 0 0 5px inset;
  height: 200px;
  position: relative;
  width: 300px;
}
@keyframes mvx{
  from{
    left: 0;
  }
  to{
    left: 280px;
  }
}
@keyframes mvy{
  from{
    top: 0;
  }
  to{
    top: 180px;
  }
}
/*------------------------------- Parading butterfly -------------------------*/
#btfbtf{
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-name: btfprd;
  animation-timing-function: ease;
  border: none;
  height: 1.5em;
  position: relative;
  width: 1.5em;
}
@keyframes btfprd{
    0%{left: 60px; top:  20px;}
   10%{left: 40px; top:  40px;}
   20%{left: 80px; top:  60px;}
   30%{left: 50px; top:  80px;}
   40%{left: 80px; top: 100px;}
   50%{left: 50px; top: 150px;}
   60%{left: 30px; top: 100px;}
   70%{left: 60px; top:  60px;}
   80%{left: 90px; top:  10px;}
   90%{left: 30px; top:  10px;}
  100%{left: 60px; top:  20px;}
}
/*------------------------------- Speech cloud -------------------------------*/
#cldxxx{
  background-color: fuchsia;
  margin: 0 3em;
  padding: 0.1em 2em;
  position: relative;
  width: 3em;
}
#cldxxx:after{
  border: 0.5em solid;
  border-color: fuchsia transparent transparent;
  content: 'xxx';
  left: 1em;
  position: absolute;
  top: 100%;
}
/*============================================================================*/
