
h1 span {
    color: #ff4321;
    position: relative;
    font-style: italic ;
    
}


h1 span::before {
    content: "";
    height: 50px;
    width: 2px;
    position: absolute;
    top: 50%;
    right: -8px;
    background: #ff4321;
    transform: translateY(-45%);
    animation: blink 0.7s infinite;
}

h1 span.stop-blinking::before {
    animation: none;
}

@keyframes blink {
    50% { opacity: 0 }
}