#suggest-landscape {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 10;
  transform: translate(0);
}
#suggest-landscape img {
  margin-left: 20%;
  width: 60%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (orientation: portrait) {
  #suggest-landscape {
    display: block;
  }
}
