@font-face {
    font-family: Stick;
    src: url('stick.ttf');
}

@font-face {
    font-family: Terminus;
    src: url('terminus.ttf');
}

@-webkit-keyframes select {
  from {
    opacity: 1.0;
  }
  to {
    opacity: 0.25;
  }
}

@-webkit-keyframes pulse {
    from {
        color: magenta;
        text-shadow: 0 0 16px magenta;
    }
    50% {
        color: cyan;
        text-shadow: 0 0 16px cyan;
    }
    to {
        color: magenta;
        text-shadow: 0 0 16px magenta;
    }
}

body {
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    color: #f50;
    background-color: black;
    font-family: Stick, monospace;
    padding: 0;
    margin: 0;
}

ul li:hover {
    -webkit-transform-origin: top left;
    -webkit-animation-name: select;
    -webkit-animation-duration: 0.2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
}

a {
    color: inherit;
}

ul {
    position: absolute;
    margin: 0;
    padding: 1em;
    list-style-type: none;
    margin-left: 1em;
}

ul li {
    font-family: Terminus, monospace;
    text-transform: uppercase;
    margin: 2em 0;
    font-size: 13px;
}

ul li a:first-child {
    margin-left: -.25em;
    display: block;
    font-family: Stick, monospace;
    font-size: 100px;
    text-transform: lowercase;
}

ul li a:first-child {
    text-decoration: none;
}

