body {
    background-color: black;
}

@font-face{
    font-family:'digital-clock-font';
    src: url(DIGITALDREAMNARROW.ttf);
}

h1 {
    font-family: digital-clock-font;
    color: red;
    text-align: center;
    font-size:100px;    
}

.blink {
    animation: blinker 1.5s step-start infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}