body{
/*  overflow: hidden;    */
  padding: 0px;
  margin: 0px;
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* This gives the container full viewport height */
}

.center {
  max-width: 1200px;
  width: 100%;
  max-height: 96vh;
  object-fit: contain;


}

@media screen and (max-width: 450px) {
  .center.desktop{
   display: none;
  }
  .center{
   width: 100vw;
   display: block;
   max-height: 92vh;
  }

  }



  @media screen and (min-width: 451px) {
  .center.desktop{
   display: block;
  }

  .center.mobile {
   display: none;
  }

  .center{
   width: 95vw;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
  }

  }


