#adContent {
  position: absolute;
  left: 0;
  top: 0;
}

.container {
  position: absolute;
  left: 0;
  top: 0;
}

.border {
  border: 1px solid #000;
}

.linear-animation {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 2.7s;
  animation-duration: 2.7s;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}

.ease-animation {
  -webkit-animation-timing-function: cubic-bezier(0.34, 0.66, 0.66, 1);
  animation-timing-function: cubic-bezier(0.34, 0.66, 0.66, 1);
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 2.7s;
  animation-duration: 2.7s;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}

#background {
  position: absolute;
  background-color: #4c55b4;
}

#background-gradient-bottom {
  position: absolute;
  opacity: 0.22;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

#gradient-overlay {
  position: absolute;
  opacity: 0.24;
  background-image: -webkit-radial-gradient(48% 48%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 83%);
  background-image: -moz-radial-gradient(48% 48%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 83%);
  background-image: -ms-radial-gradient(48% 48%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 83%);
  background-image: -o-radial-gradient(48% 48%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 83%);
  background-image: radial-gradient(circle closest-side at 48% 48%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 83%);
}

#headline {
  position: absolute;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #fff;
  -webkit-animation-name: headline_animation;
  animation-name: headline_animation;
  line-height: 1.2;
}

#description {
  position: absolute;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  -webkit-animation-name: description_animation;
  animation-name: description_animation;
  line-height: 1.2;
}

#logo-image {
  position: absolute;
}

#button {
  position: absolute;
  width: 100px;
  height: 22px;
  background-color: #fc0;
}

#button-glow {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100px;
  height: 11px;
  background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.88));
  background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.88));
  background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.88));
  background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.88));
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.88));
}

#button-text {
  position: absolute;
  width: 98px;
  height: 20px;
  text-align: center;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #000;
}
