body {
  margin: 0;
  padding: 0;
}
.animated_bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0; bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(45deg,#F17C58, #E94584, #24AADB , #27DBB1,#FFDC18, #FF3706);
    background-size: 600% 100%;
    animation: gradient 16s linear infinite;
    animation-direction: alternate;
    overflow: hidden;
    z-index: -1;
}
@keyframes gradient {
    0% {background-position: 0%}
    100% {background-position: 100%}
}

h2 {
  font-family: 'Burbank Big Black',system-ui;
  font-size: 55px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
  margin: 60px 0 0 0;
}

