/**
 * CSS Stylesheet for Spelunky HTML5
 * Original game by Derek Yu
 * HTML5 port by Darius Kazemi
 */

body{
  background: #FCD501 url('../images/bg_tile.png') top left repeat-x;
  text-align:center;
  font-size:13px;
  font-family:Verdana, Helvetica, Arial, sans-serif;
}

div#container{
  width:1430px;
  margin:0 auto;
  background:url('../images/game_frame.png') center 75px no-repeat;
}

div#logo{
  margin:0 auto;
  width:960px;
  height:160px;
  background:url('../images/logo_2.png') center bottom no-repeat;
}

iframe#game{
  height:720px;
  width:960px;
  border:none;
  position:relative;
  top:5px;
  overflow:hidden;
  margin:0 auto;
}

div#info{
  margin:0 auto;
  width:960px;
  position:relative;
  top:35px;
  background:#4F3D15;
  border:6px solid #A38218;
  border-radius:4px;
  text-align:justify;
}

#info h2{
  color:#FCD501;
  margin:13px;
  font-size:1.2em;
}

#info p{
  color:#EEE;
  margin:13px;
}

#info a:link, a:visited{
  text-decoration:none;
  color:#ddbf0a;
}
#info a:hover, a:active{
  color:#FCD501;
  text-decoration:underline;
}

div.break{
  width:100%;
  height:70px;
  clear:both;
}
