.image-container {
  align-items: center;
  justify-content: center;
  display: table-row-group;
}

.map-container {
      width: 2520px; /* adjust size as needed */
      height: auto;
      display: block;
      transform: translateY(1700px);
      position: absolute;
      bottom: 5px; /* adjust how far up from the bottom */
      left: 1%;
    }
.my-button {
  display: inline-block;
  background-color: #ffcb6b;
  color: #000;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 8px;
  font-family: 'Verdana', sans-serif;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 0 #333;
  transition: all 0.15s ease-in-out;
}

.my-button:hover {
  background-color: #ffe89f;
  box-shadow: none;
  transform: translate(2px, 2px);
}

.fixed-bottom-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* keeps it on top */
}