
body, body * {
  vertical-align: baseline;
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 9pt;
  color: #333;
}

#main-container {
  position: relative;
  width: 728px;
  height: 90px;
  cursor: pointer;
  overflow: hidden;
}

#main-container:before {
  position: absolute;
  display: block;
  content: '';
  width: 728px;
  height: 90px;
  background-image: url('image/bg.png');
}

#cta {
  position: absolute;
  left: 10px;
  top: 50px;
  width: 128px;
  height: 26px;
  background-size: cover;
  background-image: url('image/join.png');
  animation-name: blinking;
  animation-timing-function: steps(5, start);
  animation-delay: 2.5s;
  animation-duration: 0.5s;
  animation-iteration-count: 3;
  animation-fill-mode: backwards;
}

#bubble1 {
  position: absolute;
  top: 90px;
  left: 180px;
  width: 383px;
  height: 80px;
  background-size: cover;
  background-image: url('image/bubble1.png');
  animation-name: bubble;
  animation-delay: 0s;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

#bubble2 {
  position: absolute;
  top: 90px;
  left: 350px;
  width: 383px;
  height: 80px;
  background-size: cover;
  background-image: url('image/bubble2.png');
  animation-name: bubble;
  animation-delay: 1.2s;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

#text1 {
  position: absolute;
  top: 10px;
  left: 180px;
  width: 536px;
  height: 34px;
  background-size: cover;
  background-image: url('image/text1.png');
  animation-name: appear;
  animation-delay: 2.5s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

#text2 {
  position: absolute;
  top: 50px;
  left: 200px;
  width: 513px;
  height: 31px;
  background-size: cover;
  background-image: url('image/text2.png');
  animation-name: text2;
  animation-delay: 2.5s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

:focus {
  outline:none;
}

::-moz-focus-inner {
  border:0;
}

@keyframes appear {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes text2 {
  0% {top:90px; opacity: 0;}
  100% {top:50px; opacity: 1;}
}

@keyframes blinking {
  100% {visibility: hidden;}
}

@keyframes bubble {
  0% {top:90px; opacity:0;}
  15% {top:5px; opacity:1;}
  85% {top:5px; opacity:1;}
  100% {top:-80px; opacity:0;}
}