@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;

  width: 100%;
  height: 100vh;
  overflow: hidden;
 }

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.title > h1 {
  font-size: 9vw;
  padding-bottom: 15px;

  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-emphasis-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
}
.title > h2 {
  font-size: 3vw;
}

.footer {
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: 0;
  color: #626262;
  padding: 10px;
}





@keyframes textclip {
  to {
    background-position: 200% center;
  }
}