/* comics.css - styles for comic section only */

.comic-container {
  position: relative;
  width: 500px;       /* match image width */
  max-width: 90%;     /* responsive */
  margin: 40px auto;  /* centers container with space above/below */
}

.comic {
  display: block;
  width: 100%;
  height: auto;
}

.arrow {
  position: absolute;
  top: -100px;         /* position above the image */
  font-size: 1em;
  color: black;
  text-decoration: none !important; /* force removal */
  font-weight: bold;
  padding: 0 10px;
  user-select: none;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.arrow:hover {
  color: #007acc;
}
