@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');


body {
  position: relative;
  font-family: 'Manrope', sans-serif;
  background: #f1f2f4;
  margin: auto !important;
  min-height: 100vh !important;
}

header {
  text-align: center;
  font-family: 'Manrope';
  font-weight: 700;
}

.header-text {
  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-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 48px;
  margin-block-start: 0;
  margin-block-end: 0;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

canvas {
  display: block;
  margin: 0 auto;
  background-color: #ededed;

}