/* Comic page container */
.comicPage {
    position: relative;
    overflow: auto;
    margin: 20px auto;
    max-width: 100%;
    text-align: center;
}

/* Directly scale the image using width */
.comicPage img {
    width: 40%;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    display: block;
    margin: 0 auto;
}

.archiveLink {
	line-height:1.8;
    cursor:pointer;
    color:blue;
    text-decoration:underline;
}