@charset "utf-8";


@-webkit-keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}


@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

@-webkit-keyframes landing {
  from { opacity: 0; -webkit-transform: translateY(0); transform: translateY(0); }
  to { opacity: 1; -webkit-transform: translateY(15%); transform: translateY(15%); }
}

@keyframes landing {
  from { opacity: 0; -webkit-transform: translateY(0); transform: translateY(0); }
  to { opacity: 1; -webkit-transform: translateY(15%); transform: translateY(15%); }
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 300;
  height: 100%;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(147, 147, 147);
  position: relative;
}

body:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/screen.jpg') 50% 0 no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-animation: fadein 1s ease-in-out 0s forwards;
          animation: fadein 1s ease-in-out 0s forwards;
}

main {
  max-width: 900px;
  padding: 20px;
  text-align: center;
  cursor: default;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: landing 1s ease-in-out .5s forwards;
          animation: landing 1s ease-in-out .5s forwards;
  color: #fff;
}

@media all and (max-height: 750px) {
  main {
    -webkit-animation: fadein 1s ease-in-out .5s forwards;
            animation: fadein 1s ease-in-out .5s forwards;
  }
}

@supports (animation-name: landing) {
  main {
    opacity: 0;
  }
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: normal;
}

h2 {
  font-size: 18px;
  margin-bottom: 40px;
}

a {
  color: #fff;
  text-decoration: none;
}

p {
  margin: 20px 0;
}

.text {
  font-size: 20px;
  margin-bottom: 40px;
}

.meta {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 22px;
}
