html
{
    text-align: center;
    background: black;
    color: yellow;

    background-image: url('images/space.gif');
    /*
    background-size: cover;

    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    */

}

body
{
    font-size: 20px;
    max-width: 800px;
    padding: 20px;
    font-family: monospace;
    margin: 0 auto;

}

h1
{
    color: #ff00ff;
    text-shadow: 2px 2px #8B008B;
}

h2
{
    color: #00ff00;
}

a
{
    color: white;
    font-weight: 800;
    text-decoration: none;

}

a:hover
{
    color: #ff00ff;
    text-decoration: underline;
}

marquee
{
    font-size: 2em;
    font-weight: 800;
    color: red;
}

marquee img
{
  height: 200px; 
}

#title-image
{
    max-width: 320px;
    margin: 0 auto;
}

#title-image img
{
    width: 100%;
}

.bar
{
    width: 100%;
}

.blink 
{
    animation: blinker 1s linear infinite;
}

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