@keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}

@-webkit-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}

@-moz-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}

.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url(NightSky/stars2.png) repeat top center;
    z-index: -999;
}

.twinkling {
    background: transparent url(NightSky/twinkling.png) repeat top center;
    z-index: -998;
    -moz-animation: move-twink-back 2000s linear infinite;
    -o-animation: move-twink-back 2000s linear infinite;
    -webkit-animation: move-twink-back 2000s linear infinite;
    animation: move-twink-back 2000s linear infinite;
}

.constrained-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 91px; /*End result of header height*/
    font-family: 'Inconsolata', monospace;
    color: white;
    font-size: 1.5rem;
}

#blog-entry-list {
    list-style: none;
}

#blog-entry-list a {
    font-size: 2rem;
}

