    #marquee{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 102;
    width: 100dvw;
  font-family: JHUF;
    background-color: black;
        color: fuchsia;
    font-size: 50px;
    padding: 3px 0px;
  overflow: hidden;
  white-space: nowrap;
        box-shadow: inset -1px -1px 0 0 #464147, inset 1px 1px 0 0 white, inset -2px -2px 0 0 #a099a1, inset 2px 2px 0 0 #dedcde;
}

#marquee a {
    color: fuchsia;
    text-decoration: none;
}

#div1 {
  display: inline-block;
  animation: marquee 60s linear infinite;
    color: fuchsia;
/*background: #E93CCB;
background: linear-gradient(to top, #E93CCB 0%, #6400ae 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    filter:saturate(1.5);
text-shadow:  0 0 10px #e60073;    
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: purple;  */
    background: linear-gradient(-45deg, #8719d2, #8719d2, #8719d2, #8719d2);
    background-size: 200% 200%;
   -webkit-background-clip: text;
   -webkit-text-stroke: 8px transparent;   
    padding: 10px 0px 14px 0px;
}

#marquee img {
    display: inline;
    height: 40px;
    width: auto;
    margin: 0px 30px;
}

@keyframes marquee {
  from {
    transform: translateX(100dvw);
  }
  to {
    transform: translateX(-500dvw);
  }
}

@keyframes marquee2 {
  from {
    transform: translateX(0dvw);
  }
  to {
    transform: translateX(-200dvw);
  }
}

@media (max-width: 800px) {
    
    #div1 {animation: marquee 20s linear infinite;}
@keyframes marquee {
  from {
    transform: translateX(100dvw);
  }
  to {
    transform: translateX(-400dvw);
  }
}    
}

@media (max-width: )