html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
}

.image-container {
  max-height: 100vh;
  overflow-y: auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.desktop-image,
.tablet-image,
.mobile-image {
  width: 100%;
  height: auto;
  display: none;
}

@media (max-width: 767px) {
  .mobile-image {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tablet-image {
    display: block;
  }
}

@media (min-width: 1025px) {
  .desktop-image {
    display: block;
  }
}
