/* Main css */
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 {
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  user-select: none;
  list-style: none;
}
html {
  /* Prevent font scaling in landscape while allowing user zoom */
  -webkit-text-size-adjust: 100%;
  /* fix font family display error on different browsers */
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
canvas {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: black;
}
img {
  display: block;
  width: 100%;
}
.main-story {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background: #00000a;
}
.main-story.loaded {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.4);
}
.module-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -1px;
}
iframe {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  overflow: hidden;
}
.landscape {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 999;
  display: none;
  background: #182c55;
}
.landscape .container {
    position: absolute;
    width: 15%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.landscape .container img {
      width: 100%;
      height: auto;
      display: block;
}
@media screen and (max-height: 499px) and (orientation: landscape) {
.mobile .landscape {
    display: block;
}
.mobile .landscape .container img {
      animation: rotating 2s cubic-bezier(0.77, 0, 0.175, 1) 1s infinite alternate;
}
}
.tablet .landscape, .galaxyTab .landscape {
  display: none !important;
}
@keyframes rotating {
0% {
    transform: rotate(-1deg);
}
100% {
    transform: rotate(91deg);
}
}
