.container {
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.zoom_buttons_container, .move_buttons_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.move_buttons_container {
  max-width: 500px;
}

.zoom_buttons_container button {
  width: 130px;
  padding: 15px 30px;
}

.move_buttons_container button {
  width: 150px;
  max-width: 150px;
  padding: 15px 20px;
  flex: 0 0 50%;
}

.image-container {
  position: relative;
  z-index: 1;
}

.zoom_buttons_container button, .move_buttons_container button {
  background-color: orange;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
  font-size: 20px;
}

button:hover {
  color: white;
}

img {
  max-width: 100%;
  transition: transform 0.5s ease;
  position: relative;
}

@media (min-width: 640px) {
  .move_buttons_container {
    max-width: none;
    justify-content: space-around;
  }
  
  .move_buttons_container button {
    flex: 0 0 25%;
    padding: 15px 0px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (min-width: 680px) {
  .move_buttons_container {
    justify-content: center;
  }
  .move_buttons_container button {
    margin: 10px;
  }
}