:root{
    --pattern-size: 64px;         /* tile width & height */
    --pattern-color: #cfcfcf;     /* color used in the SVG (edit in data URI below) */
}


.heart-grid {
    min-height:100%;
    /* background SVG tile (one '心') */
    background-image: url("/kokoro.svg");
    background-repeat: repeat;
    background-size: var(--pattern-size) var(--pattern-size);
}

.manga-page {
  width: 300px;
  padding: 1.5rem;
  background: #fdfdf9;              /* off-white paper */
  border: 4px solid #000;           /* strong panel border */
  box-shadow: -6px 6px 0 #888;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.6;
  margin-left: auto;
}

.kami {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
    width: 220px;
    height: 160px;
    display: inline-block;
    margin-top: 1cm;
}

img {
  width: 300px;
  height: auto;
}

body { 
    text-align: right; 
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
    color: black;
    text-decoration: none;
}


li {
  display: inline;
  margin-right: 10px;
}

rt {
    color: black;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #000;
		color: #bdbdbd;
	}
	a {
		color: white;
	}
}
