I want to use this code for my main page:
```
@keyframes movingGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
body { background-image: linear-gradient(to top left, #FFD23F, #E5BEED); background-size: 150% 150%; animation: movingGradient 5s ease infinite; /*background-image: linear-gradient(to top right, #E5BEED, #FFD23F);*/ color: #272727; font-family: Arial, sans-serif; line-height: 1.6; margin-top: 2rem; }
```
Can I at least get the gradient in Qualtrics? I tried copy pasting this to Custom CSS and it does not work