
html, body {
  height: 100%;
  margin: 0px;
  background-color: #131316;
}
.flex-container {
  min-height: 100%;
  min-width: 100%;
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  background-color: blue;
  /*display: block;*/
  display: inline;
}
#image {
  height: 100%;
  /*width: 100%;*/
  max-width: 50%;
  cursor: zoom-in;
  /*background-color: red;*/
  margin: auto;
  background-size: 100%;
}


 @media screen and (max-device-width: 480px) {
   #image {
     /*height: auto;
     max-width: 100%;
     cursor: default;*/
   }
 }
