html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
}

#page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}

#img img,
#img2 img {
  scale: 0.8;
  width: 100%;
  height: auto;
  display: block;
}

#content-wrapper {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

#comicpage img {
  max-width: 90vw;
  display: block;
  margin: 0 auto;
}

#buttons {
    scale: 7;
    height: 120px;
    margin-top: 70px;
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

#previousbutton img,
#homebutton img,
#nextbutton img {
  height: 40px; /* Adjust button size */
  cursor: pointer;
}

#previousbutton img:hover,
#homebutton img:hover,
#nextbutton img:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
