* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #222222;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

a {
  font-family: 'Righteous', cursive;
  margin-left: 4em;
  margin-right: 4em;
  text-align: center;
  width: 200px;
  padding: 20px 30px;
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

a:hover .wave {
  top: -120px;
}

a:hover .wave2 {
  top: -120px;
}

a span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 30px;
  letter-spacing: 8px;
}

a .wave {
  width: 200px;
  height: 200px;
  background-color: #de70ff;
  -webkit-box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5);
          box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: -80px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a .wave::before, a .wave::after {
  width: 200%;
  height: 200%;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
}

a .wave::before {
  border-radius: 45%;
  background-color: #ae43d8;
  -webkit-animation: wave 5s linear infinite;
          animation: wave 5s linear infinite;
}

a .wave::after {
  border-radius: 40%;
  background-color: rgba(175, 58, 221, 0.5);
  -webkit-animation: wave 10s linear infinite;
          animation: wave 10s linear infinite;
}

a .wave2 {
  width: 200px;
  height: 200px;
  background-color: #777777;
  -webkit-box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5);
          box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: -80px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a .wave2::before, a .wave2::after {
  width: 200%;
  height: 200%;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
}

a .wave2::before {
  border-radius: 45%;
  background-color: #292929;
  -webkit-animation: wave 5s linear infinite;
          animation: wave 5s linear infinite;
}

a .wave2::after {
  border-radius: 40%;
  background-color: rgba(8, 8, 8, 0.5);
  -webkit-animation: wave 10s linear infinite;
          animation: wave 10s linear infinite;
}

@-webkit-keyframes wave {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: translate(-50%, -75%) rotate(0deg);
            transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -75%) rotate(360deg);
            transform: translate(-50%, -75%) rotate(360deg);
  }
}
/*# sourceMappingURL=style.css.map */