html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  position: fixed!important;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  text-rendering: optimizeLegibility;
  touch-action: manipulation;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
  word-wrap: break-word;
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  overflow: hidden!important;
  background: transparent!important;
}
.content,.noData{
  width: 100vw;
  height: 100vh;
  background-image: url('./imgs/bg.jpg');
  background-position: 0% 0%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
p{
  font-size: 13px;
  color:#9D9D9C; 
  margin-top: 5px;
}
.content  img{
   width:100%;
   height: auto;
   border-top: 5px solid #fff;
   border-bottom: 5px solid #fff;
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
   /* pointer-events: none; */
}
.noData img{
  max-width:100%;
  height: 170px;
}
.noData p{
   margin-top: 15px;
}
@media (orientation:landscape) { 
  .content  img{
    width: 70%;
    border: 5px solid #fff;
  }
}


