body {
  background-color: rgb(237, 238, 240);
  text-align: center;
  font-family: "Delius", sans-serif;
  padding: 2rem;
  padding-top: 0;
}
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
}
.image-grid-item {
  width: 150px;
  text-align: center;
}
.image-grid-item img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.image-grid-item caption {
  margin-top: 8px;
  font-size: 12px;
  color: #333;
}
.image-grid-item a {
  text-decoration: none;
}
a {
  color: black;
}

.doujin {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.left-column {
  flex: 1;
}

.left-column img {
  max-width: 100%;
  border: 1px solid black;
}

.right-column {
  flex: 2;
  height: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table tr td:first-of-type {
  width: 20%;
}

td {
  border: 1px solid #000;
  padding: 0.25rem;
}
