html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 100%;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ------------------------------------------------------------------------------- */

html, body {
  height: 100%;
  font-family: serif;
}

video#bgvid {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

/*
.page {
  background: url(../img/bg.jpg) 50% 0 no-repeat, #000;
}
*/
.page__wrap {
  /*width: 1020px;*/
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.page__menu {
  padding: 0 0 0 0px;
  -webkit-animation: menu-in 1s ease-out;
          animation: menu-in 1s ease-out;
}
@-webkit-keyframes menu-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60%);
            transform: translateY(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes menu-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60%);
            transform: translateY(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.logo {
  margin: 0px 0px 0px 0px;
}

.badge {
  margin: 0px 0px 0px 0px;
  position: absolute;
  top: 0;
  right: 0;
}

.game-menu__item {
  margin: 0 0 15px 0;
  -webkit-animation: item-spacing 1s;
          animation: item-spacing 1s;
}
.game-menu__link {
  display: block;
  width: 303px;
  height: 66px;
  text-align: center;
  color: white;
  font-size: 170%;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 70px;
  vertical-align: middle;
}
.game-menu__link:hover {
  background: url(../img/button-sprite.jpg) 0 -66px no-repeat;
}
@-webkit-keyframes item-spacing {
  0% {
    margin: 0 0 0 0;
  }
  100% {
    margin: 0 0 15px 0;
  }
}
@keyframes item-spacing {
  0% {
    margin: 0 0 0 0;
  }
  100% {
    margin: 0 0 15px 0;
  }
}
.girl {
  height: 90%;
  max-height: 1000px;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-animation: girl-in 2s ease-out;
          animation: girl-in 2s ease-out;
}
@-webkit-keyframes girl-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes girl-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
