body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: #000;
    box-sizing: border-box;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 6s linear infinite forwards;
    animation-delay: 1s;    
}

@keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

div {
    position: absolute;
    width: 150px;
    height: 150px;
    /* border: 2px solid yellow; */
    animation: change 6s linear infinite forwards;
    animation-delay: 1s;
}

@keyframes change {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}
div:nth-child(1) {
  background: linear-gradient(to bottom right, yellow, deeppink);  
  border-radius: 50% 50% 0 50%;
  transform: skew(23deg,23deg) translate(-75px, -75px);
}

div:nth-child(2) {
  background: linear-gradient(to bottom left,yellow,deeppink);  
  border-radius: 50% 50% 50% 0;
  transform: skew(-23deg,-23deg) translate(75px, -75px);
}

div:nth-child(3) {
  background: linear-gradient(to top right, yellow,deeppink);  
  border-radius: 50% 0 50% 50%;
  transform: skew(-23deg,-23deg) translate(-75px, 75px);
}

div:nth-child(4) {
  background: linear-gradient(to top left, yellow,deeppink);  
  border-radius: 0 50% 50% 50%;
  transform: skew(23deg,23deg) translate(75px, 75px);
}

div:nth-child(5) {
  background: linear-gradient(to bottom right,yellow,deeppink);  
  border-radius: 50% 50% 0 50%;
  transform: rotateZ(45deg) skew(23deg,23deg) translate(-75px, -75px);
}

div:nth-child(6) {
  background: linear-gradient(to bottom left, yellow,deeppink);  
  border-radius: 50% 50% 50% 0;
  transform: rotateZ(45deg) skew(-23deg,-23deg) translate(75px, -75px);
}

div:nth-child(7) {
  background: linear-gradient(to top right, yellow,deeppink);  
  border-radius: 50% 0 50% 50%;
  transform: rotateZ(45deg) skew(-23deg,-23deg) translate(-75px, 75px);
}

div:nth-child(8) {
  background: linear-gradient(to top left, yellow,deeppink);  
  border-radius: 0 50% 50% 50%;
  transform: rotateZ(45deg) skew(23deg,23deg) translate(75px, 75px);
}

div:nth-child(9) {
    width: 50px;
    height: 50px;
    border: 2px solid deeppink;
    border-radius: 50%;
    background: radial-gradient(darkred, deeppink 65%);
    filter: blur(5px);
}