* {
    margin: 0;
    padding: 0;
}
body{
  font-family: "Lucida Grande", Helvetica, Sans-Serif;
  font-weight: bold;
  font-size: 14px;
}

a:link {color:black;
  text-decoration: none;}      /* unvisited link */
a:visited {color: black;
  text-decoration: none;}  /* visited link */
a:hover {color:white;
  background-color: black;
  text-decoration: none;}  /* mouse over link */
a:active {color:white;
  background-color: black;
  text-decoration: none;}  /* selected link */

  
#page-wrap {
  width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 30px 50px;
  text-align: center;
}

header {
  width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 30px 50px;
  height:500px;
  text-align: center
}
h3 {
  font-family: "Lucida Grande", Helvetica, Sans-Serif; 
  color: black;
  padding-left: 10px; 
  padding-right: 10px; 
  font-size: 12px; 
  font-weight: bold;
}
h2{
    margin-top: 30px;
    text-align: center;
}
header h2{
    font-size: 22px;
    margin: 0 auto;
    padding: 10px 0;
    width: 80%;
    text-align: center;
}

@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;}
}
@-ms-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(images/stars.png) repeat top center;
  z-index:0;
}

.twinkling{
  background:transparent url(images/twinkling.png) repeat top center;
  z-index:1;

  -moz-animation:move-twink-back 200s linear infinite;
  -ms-animation:move-twink-back 200s linear infinite;
  -o-animation:move-twink-back 200s linear infinite;
  -webkit-animation:move-twink-back 200s linear infinite;
  animation:move-twink-back 200s linear infinite;
}