@font-face {
  font-family: Berlina;
  src: url("fonts/berlina-x-bold.ttf");
}
@font-face {
  font-family: CocogoosePro;
  src: url("fonts/cocogoose-pro.ttf");
}
@font-face {
  font-family: Karla;
  src: url("fonts/karla.ttf");
}
@font-face {
  font-family: SF-UI-Text-Light;
  src: url("fonts/sf-ui-text-light.otf");
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
  background: #02101f;
}

body {
  min-height: 100%;
  background: url("images/main.jpg") no-repeat top center transparent;
  position: relative;
}

.logo, .clouds {
  position: absolute;
  top: -30px;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("images/logo.png") no-repeat top center transparent;
}

.clouds {
  top: 0px;
  background: url("images/clouds.png") no-repeat top center transparent;
  display: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 100%;
  padding-top: 150px;
  display: flex;
  position: relative;
  z-index: 10;
}
.container > div {
  flex: 0 30%;
}
.container .chronos {
  order: 1;
  text-align: center;
  display: flex;
  align-items: center;
}
.container .chronos img {
  max-width: 100%;
}
.container .youtube-player {
  order: 2;
  flex: 0 40%;
  padding-top: 60px;
}
.container .youtube-player .trailer-link {
  overflow: hidden;
}
.container .youtube-player .trailer-link .inner {
  font-family: Karla;
  color: #fff;
  font-size: 15px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px 0;
  white-space: nowrap;
}
.container .youtube-player .trailer-link .inner a {
  font-family: Karla;
  color: #fff;
  text-decoration: underline;
}
.container .stores {
  order: 3;
  background: url("images/stores.png") center center no-repeat transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container .stores a {
  margin: 5px;
}
.container .break {
  display: none;
}

.description-section {
  min-height: 125px;
  background-color: rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  padding-top: 20px;
}
.description-section .container {
  padding-top: 0;
}
.description-section .container .description {
  flex: 2;
  transform: scaleX(0.7);
  transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  padding-left: 130px;
}
.description-section .container .description h2 {
  font-size: 16px;
  font-family: Berlina;
  color: #bbb;
}
.description-section .container .description p {
  font-size: 14px;
  font-family: Berlina;
  color: #909090;
}
.description-section .container .links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.description-section .container .links .header {
  font-family: SF-UI-Text-Light;
  color: #959595;
  font-size: 18px;
  transform: scaleX(0.7);
}
.description-section .container .links .gmail > a {
  display: block;
  margin: 10px auto;
  border: 1px solid #6c6c6c;
  width: 110px;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  line-height: 16px;
}
.description-section .container .links .social > a {
  margin: 0 5px;
}

@media only screen and (max-width: 850px) {
  .clouds {
    display: block;
  }

  .container {
    flex-wrap: wrap;
  }
  .container .break {
    display: block;
    flex: 2 100%;
    width: 0px;
    height: 0px;
    overflow: hidden;
    order: 2;
  }
  .container .youtube-player {
    order: 1;
    flex: 1 80%;
    max-width: 80%;
    margin: 0 auto 50px;
  }
  .container .chronos {
    order: 3;
    flex: 1 40%;
  }
  .container .stores {
    order: 4;
    flex: 1 40%;
  }

  .description-section {
    padding-bottom: 50px;
  }
  .description-section .container {
    flex-direction: column;
  }
  .description-section .container .description {
    transform-origin: 50%;
    -moz-transform-origin: 50%;
    -webkit-transform-origin: 50%;
    padding: 0;
  }
}

/*# sourceMappingURL=main.css.map */
