body {
background-color: #f1f1f1;
color: #030303;
text-align: center;
padding-top: 80px;
max-width: 100%;
margin: 0;
}

p {
    font-family: "articulat-cf", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 20px;
}

.blinking {
  -webkit-animation: 1s blink ease infinite;
  -moz-animation: 1s blink ease infinite;
  -ms-animation: 1s blink ease infinite;
  -o-animation: 1s blink ease infinite;
  animation: 1s blink ease infinite;
  
}

@keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-ms-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-o-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}


.background {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #f1f1f1, #f1f1f1);
    display: flex;
    flex-grow: 1;
    z-index: -2;
}

.background div {
    position: absolute;
    border-radius: 100%;
    height: 0;
    filter: blur(240vw);
    opacity: .4;
}

.background div:nth-child(1) {
  background: linear-gradient(132deg, #38f2ff 0%, #0fabff 100%);
  width: 30%;
  padding-top: 30%;
  left: 15%;
  top: 0%;
  transform: translate(-50%) translateY(-50%);
}
.background div:nth-child(2) {
  background: linear-gradient(132deg, #0800FF 0%, #E32BE3 100%);
  width: 25%;
  padding-top: 25%;
  left: 25%;
  top: 20%;
  transform: translate(-50%) translateY(-50%);
}
.background div:nth-child(3) {
  background: linear-gradient(132deg, #0fabff 0%, #38f2ff 100%);
  width: 30%;
  padding-top: 30%;
  right: 1%;
  top: 0%;
  transform: translate(-50%) translateY(-50%);
}
.background div:nth-child(4) {
  background: linear-gradient(132deg, #E32BE3 0%, #0800FF 100%);
  width: 25%;
  padding-top: 25%;
  right: 1%;
  top: 20%;
  transform: translate(-50%) translateY(-50%);
}