.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
}
h1{
  text-align: center;
  margin-bottom: 1rem;
}
.product-container img {
  width: 720px; /* Adjust as per your requirement */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer;
}

.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;
}
}