.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
}
h1 {
  text-align: center;
  margin-bottom: 1rem;
}
.product-container {
  user-select: none;
}
.product-container img {
  width: 720px; /* Adjust as per your requirement */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer;
  /* I have to prevent image dragging */
  -webkit-user-drag: none; /* Safari */
  -khtml-user-drag: none; /* Konqueror HTML */
  -moz-user-drag: none; /* Old versions of Firefox */
  -o-user-drag: none; /* Old versions of Opera */
  user-drag: none; /* Non-standard syntax */
  -webkit-touch-callout: none; /* Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-standard syntax */
  -webkit-tap-highlight-color: rgba(
    0,
    0,
    0,
    0
  ); /* Disable tap highlight color on mobile devices */
  /* Android  */
}

.controls {
  margin-bottom: 5rem;
  text-align: center;
}

.controls button.zoom {
  margin: 0 5px;
  padding: 5px 10px;
  cursor: pointer;
}
.action {
  opacity: 0;
}

@media (max-width: 465px) {
  .product-container img {
    width: 420px;
  }
}
