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