@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700italic);

h1, button{
  color:#fff;
  text-align: center;
  padding: 20px;
}


a{
   text-decoration:none;

}




.button-one, .button-two, .button-three{
  text-align: center;
  cursor: pointer
  font-size:12px;
}



/*Button Two*/
.button-two {
  border-radius: 4px;
  background-color:#8397ab;
  border: none;
  padding: 20px;
  width: 110px;
  text-align: center;
  height: 40px;
  padding: 5px;
  transition: all 0.5s;
}


.button-two span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-two span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-two:hover span {
  padding-right: 25px;

}

.button-two:hover span:after {
  opacity: 1;
  right: 0;
}


@media screen and (max-width: 1080px) {
  .button-two {
    font-size: 10px;
  }
  .span {
    width: 75%;
    font-size: 10px;
  }
}

@media screen and (max-width: 1079px) {
  .button-two {
    width: 70px;
    font-size: 8px;
  }
  .span {
    width: 50%;
    font-size: 80px;
  }
}

#test2 {

    -webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 4s; /* Firefox < 16 */
        -ms-animation: fadein 4s; /* Internet Explorer */
         -o-animation: fadein 4s; /* Opera < 12.1 */
            animation: fadein 4s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
