@font-face {
  font-family: Roboto;
  src: url(RobotoBitmap.ttf);
}

* {
  margin: 0;
  padding: 0;
}

body {
  font: 1.1rem Roboto;
  background-color: black;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}

#container {
  margin-top: 2vh;
  margin-bottom: 2vh;
}

#container,
.comic-pages {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.comic-pages img {
  pointer-events: none;
}

a {
  color: white;
}

#top {
  text-align: left;
}

#end {
  text-align: right;
}
a:hover {
  font-style: italic;
}
.pagination {
  display: flex;
  flex-direction: row;
  list-style: none; /* remove list bullets */
  padding: 0;
  justify-content: center;
}

.pagination li a {
  display: block;
  padding: 8px 12px;
  border-bottom: none;
  margin: 0 4px;
  text-decoration: none;
}

.pagination li a:hover {
  font-style: normal;
}

.pagination img {
  width: 50px;
}

.comic-pages img {
  width: 60vw;
}
