html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#main {
  width: 381px;
  height: 295px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: top center;

  background-image: url("images/fltrjp-top1.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  color: #fff;
  font-size: 12px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 8px 6px 8px;
  box-sizing: border-box;
}

/* footer */
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #EC3A18;
  padding: 10px 0;
}

.left-bottom, .right-bottom {
  position: relative;
}

a:link, a:visited, a:hover, a:active {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #000;
}

@media (max-width: 480px), (max-height: 500px) {
  #main {
    transform: translate(-50%, -50%) scale(0.7);
  }
}