.gradient-background a {
  color: #fff !important;
}

.wp-block-button.menu-button {
  display: none;
}

.gradient-background {
  background: linear-gradient(46deg, #43146e, #212136, #43146e);
  background-size: 150% 150%;
  animation: gradient-animation 12s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}