html {
  height: 100%;
}
body {
  font-family: "Noto Serif", Arial, Helvetica, sans-serif;
  font-size: 1em;
  color: #ffffff;
  line-height: 1.5em;
  overflow-x: hidden;
  background-image: url(../img/mobile/bkg.jpg);
  background-size: cover;
  background-position: left top;
  background-attachment: fixed;
  background-color: #000;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
#landing-layout {
  height: 100%;
  padding: 1em 2em;
  position: relative;
  box-sizing: border-box;
}
.content {
  height: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: "Noto Serif", Arial, Helvetica, sans-serif;
}
.hide-mobile,
.show-mobile-wide {
  display: none;
}
.show-mobile {
  display: block;
}
img.real-fan {
  width: 65%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}
.column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.item {
  text-align: center;
}
.item img {
  width: 100%;
}
.item img.bottom-logo {
  width: 200px;
}
h1 {
  font-size: 2em;
  line-height: 1em;
}

@media only screen and (min-width: 361px) {
  body {
    background-image: url(../img/mobile/bkg-wide.jpg);
    font-size: 1.1em;
  }
  .show-mobile-wide {
    display: block;
  }
  .hide-mobile,
  .show-mobile {
    display: none;
  }
}

@media only screen and (min-width: 767px) {
  body {
    background-image: url(../img/desktop/bkg.jpg);
    background-position: center top;
    font-size: 1.2em;
  }
  .hide-mobile {
    display: block;
  }
  .show-mobile,
  .show-mobile-wide {
    display: none;
  }
  .column {
    margin-left: 50%;
  }
}
