
body {
  font-family: Arial, Helvetica, sans-serif;

  color: #ffffff;
  background-color: #8E44AD;
}

.container {
  width: 360px;
  margin: 150px auto 0;
    font-size: 24px;
  line-height: 36px;
  font-weight: bold;
}

.container a {
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  padding: 10px 15px;
  color: #ffffff;
  border: #ffffff solid 1px;
  -ms-transition: background-color 500ms ease, color 500ms ease;
  -webkit-transition: background-color 500ms ease, color 500ms ease;
  transition: background-color 500ms ease, color 500ms ease;
  display: inline-block;
}

.container a:hover {
  color: #c5db35;
  background-color: #ffffff;
}

.textify span {
  opacity: 0;
  transform: translate3d(-50px, 0, 0);
  transition-property: transform, opacity;
  display: block;
}

.textify.reveal span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
