body {
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-weight: lighter;
  font-size: x-large;
  color: #7DB669;

  background-color: #1E1E1E;
  opacity: 0.8;
  background-image: radial-gradient(#2C3934 0.5px, #1E1E1E 0.5px);
  background-size: 10px 10px;
}

a {
  color: white;
}

h1 {
  font-weight: lighter;
}

h2 {
  font-weight: lighter;
  color: white;
  text-shadow: 1px 1px 2px #E4A424;
}

.container {
  height: 95vh;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brush-wrap {
  position: relative;
  display: inline-block;
  padding: 3rem;
}

/* applying example animation (indefinite variant) */
.brush-wrap.brush-wrap--indefinite:before {
  clip-path: url(#clip-indefinite);
}

/* clipping/animating object (pseudo element) */
.brush-wrap:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #6251BC;
  z-index: -1;
  clip-path: url(#clip); /* applying clip animation */
}

.brush-wrap h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
  color: white;
  font-style: italic;
  filter: drop-shadow(0px 0px 2px #6251BC);
}

footer {
  width: 100%;
  background-color: #6251BC;
  color: white;
  font-size: small;
  text-align: center;
  margin-top: auto;
  border-radius: 25px;
}
