html {
  height:100%;
}
body {
  margin:0;
  height:100%;
  background:url('../img/bg.jpg');
  background-size:256px 256px;
  background-position:center center;
  text-transform:uppercase;
  cursor: url(../img/cursor.png), auto;
}
.img {
  display:block;
  max-width:100%;
}
.wrap {
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
}
.main {
  position:relative;
  display:flex;
  flex-flow:column;
  height:572px;
  width:512px;
  min-width:512px;  
  margin:64px auto;
  margin-bottom:64px;
  background:#000;
}
.logo {
  position:relative;
  background:url('../img/bg2.gif');
  display:flex;
  align-items:center;
  justify-content:center;
  height:92px;
  min-height:92px;

}
.resolution {
  position:absolute;
  bottom:6px;
  width:100%;
  display:flex;
  align-items: center;
  justify-content: center;
  color:#F00;
  font-size:11px;
  letter-spacing:1px;
}
.spikewrap {
  position:relative;
  margin:0 16px;
  cursor:none;
}
.spiketext {
  display:flex;
  top:0;
  width:100%;
  height:100%;
  align-items: center;
  justify-content: center;
  position:absolute;
  opacity:0;
  transition:all 0.25s linear;
  color:#F00;
}
.spike {
  transition:all 0.25s linear;
}
.spikewrap:hover img {
  transform:translateY(-64px);
}
.spikewrap:hover span {
  opacity:1;
}
.gl {
  z-index:2;
}
.sl, .sr {
  position:absolute;
  top:-16px;
  z-index:1;
}
.sl {
  left:-52px;
}
.sr {
  right:-52px;
}
.tl, .tr {
  position:absolute;
  top:10px;
  z-index:2;
}
.tl {
  left:8px;
}
.tr {
  right:8px;
}
.trim {
  max-height:16px;
}
.content {
  flex:1;
}
.nwrap {
  display:flex;
  position:absolute;
  justify-content:center;
  top:110px;
  width:100%;
  left:0;
}
.nbtn {
  color:#aaa;
  padding:0 8px 4px 8px;
  letter-spacing:2px;
  font-size:11px;
  font-weight:700;
  transition:color 0.16s linear;
  margin:0 8px;
}
.vwrap {
  display:flex;
  justify-content:center;
  position:absolute;
  bottom:2px;
  left:0;
  width:100%;
  height:11px;
}
.v {
  color:#111;
  padding:0 8px 4px 8px;
  background:#444;
  font-weight:700;
  letter-spacing:1px;
  font-size:12px;
  line-height:12px;
  transition:color 0.16s linear;
}
.v:hover, .nbtn:hover {
  color:#F00;
}