
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "geomanistregular";

    /*background-image: linear-gradient(125deg,#6a89cc,#b8e994);
*/
}
@font-face {
    font-family: 'geomanistregular';
    src: url('font/geomanist-regular-webfont.eot');
    src: url('font/geomanist-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/geomanist-regular-webfont.woff2') format('woff2'),
         url('font/geomanist-regular-webfont.woff') format('woff'),
         url('font/geomanist-regular-webfont.ttf') format('truetype'),
         url('font/geomanist-regular-webfont.svg#geomanistregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
body{
  background: #353b48;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
a{
  position: relative;
  display: inline-block;
  padding: 12px 36px;
  margin: 10px 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  border-radius: 40px;
  width: 125px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background: linear-gradient(90deg,#0162c8,#55e7cf);
  transition-delay: 4s;
}
a:nth-child(2){
  background: linear-gradient(90deg,#755bea,#ff72c0);
}
a:nth-child(3){
  background: linear-gradient(90deg,#006600,#00cc00);
}
a:nth-child(4){
  background: linear-gradient(90deg,#034f84,#92a8d1);
}
a:nth-child(5){
  background: linear-gradient(90deg,#149c3f,#165443);
}
span{
  position: absolute;
  background: #fff;
  transform: translate(-50%,-50%);
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
  animation: animate 1s linear infinite;
}
@keyframes animate {
  0%{
    width: 0px;
    height: 0px;
    opacity: .5;
  }
  100%{
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
.text{
  color: #fff;
  text-transform: lowercase;
  margin: 10px;
}
