.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.image-container {
  width: 85%;
}

.wrapper .image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.download-btn button {
  padding: 10px 50px;
  background-color: #065ccb;
  color: white;
  font-size: 20px;
  text-decoration: none;
  border: 1px #faffff solid;
  border-radius: 10px;
  cursor: pointer;
}

.download-btn button:hover {
  background-color: crimson;
}

.download-btn {
  margin: 15px;
}

.download-btn a button .fa-download {
  margin-left: 15px;
}

.heading {
  display: none;
}

@media (max-width: 768px) {

  .image-container {
    padding-top: 65x; 
    width: 500px;
    height: 420px;
    overflow: hidden;
  }

  .zoomable-image {
    transform: rotate(90deg);
  }

  .download-btn button {
    font-size: 1rem;
    border-radius: 0.45rem;
  }
}