.background {
    position: absolute;
    display: flex;
    height: 100svh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, rgb(13, 209, 234) 0%, rgba(225, 5, 34, 0) 70%) repeat scroll 0% 0%, 
    linear-gradient(135deg, rgb(255, 255, 255) 10%, rgba(49, 5, 209, 0) 80%) repeat scroll 0% 0%, 
    linear-gradient(225deg, rgb(255, 255, 255) 10%, rgba(10, 219, 216, 0) 80%) repeat scroll 0% 0%,
     rgba(0, 0, 0, 0) linear-gradient(315deg, rgb(99, 58, 221) 100%, rgba(9, 245, 5, 0) 70%) repeat scroll 0% 0%;
     opacity: 0.8;
     overflow: hidden;
  }
  
  /* Shapes */
  .background .shape {
    filter: blur(465px);
    position: absolute;
  }
  
  .background .shape:nth-child(1) {
    background-color: #ffb0d8;
    top: -340px;
    width: 300px;
    height: 300px;
  }
  
  .background .shape:nth-child(2) {
    left: 100px;
    bottom: -150px;
    background-color: #c26cf3;
    width: 200px;
    height: 210px;
  }
  
  .background .shape:nth-child(3) {
    background-color: #87cfdf;
    bottom: -150px;
    right: 100px;
    width: 300px;
    height: 300px;
  }
    