body {
    background-color:   #000000;
    color:              #00D100;
    }

.text {

    margin-left:        12px;
    margin-top:         24px;
    font-family:        monospace;
    font-size:          20px;
        }

.blink_me {
    position: relative;
    top: 250px;
    left: ;
    right: 0;
    bottom: 0;
    font-family:        monospace;
    font-size:          20px;
    animation: blinker 1500ms infinite;
}

@keyframes blinker {
    0% {
        opacity: 0;
    }
}