.permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #111;
}
section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(transparent,transparent,#0005,#0004);
    z-index: 10000;
    pointer-events: none;

}
.scroll{
    width: calc(100% + 400px);
    left: -400px;
    display: flex;
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
    transform: rotate(calc(var(--d) * 1deg)) translateY(calc(var(--y) * 1px));

}
.scroll div{
    background: #e9c804;
    color: #1d1104;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    white-space: nowrap;
    animation: animate 60s linear infinite;
    animation-delay:-60s ;
    font-weight: 600;

}
.scroll div:nth-child(2){
    animation: animate-two 60s linear infinite;
    animation-delay: -30s;
}
@keyframes animate {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
@keyframes animate-two {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-200%);
    }
}
/* .neon-text {

    
    color: #f00;
    font-weight: bold;
    text-shadow: 0 0 10px #f00, 0 0 20px #f00, 0 0 40px #f00, 0 0 80px #f00;
    animation: neon-blink 2s infinite;
   
} */
/* @keyframes neon-blink {
    0%, 100% {
        opacity: 0.6;
        text-shadow: 0 0 10px #f00, 0 0 20px #f00;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px #f00, 0 0 40px #f00, 0 0 80px #f00;
    }
} */
x-sign {font-size: 2.5em;
     z-index: 10001;
  --interval: 1s;
  display: block;
  text-shadow: 
    0 0 10px var(--color1),
    0 0 20px var(--color2),
    0 0 40px var(--color3),
    0 0 80px var(--color4);
  will-change: filter, color;
  filter: saturate(60%);
  animation: flicker steps(100) var(--interval) 1s infinite;
      position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   color: lightpink;
  --color1: blue;
  --color2: orangered;
  --color3: red;
  --color4: magenta;
  font-family: Permanent Marker;
}
@keyframes flicker {
  50% {
    color: white;
    filter: saturate(200%) hue-rotate(20deg);
  }
}
