html {
  height: 100%;
}

body {
  background-color: #181D27;
  color: white;
}

form {
  width: 400px;
  max-width: 100vw;
}
form input[type=text], form textarea {
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
form label {
  width: 100%;
}
form .row {
  display: flex;
  background-color: #C1E09A;
  padding: 5px 0px;
}
form .row div {
  flex: 1;
  flex-wrap: wrap;
  color: black;
  width: 100%;
}
form .row div:nth-child(odd) {
  flex: 2;
  padding-left: 5px;
}
form .row div:nth-child(even) {
  flex: 9;
  padding-right: 5px;
}
form .row:last-child {
  background-color: #457757;
}

table.manga-info {
  margin: 0 0 15px 0;
  width: 400px;
  max-width: 100vw;
}
table.manga-info thead, table.manga-info tfoot {
  color: #181D27;
  background-color: #C1E09A;
  text-align: center;
}
table.manga-info thead a:link, table.manga-info thead a:visited, table.manga-info tfoot a:link, table.manga-info tfoot a:visited {
  color: #181D27;
}
table.manga-info thead a:hover, table.manga-info tfoot a:hover {
  color: #2AA375;
}
table.manga-info tfoot div {
  display: inline-block;
  margin: 0px 20px;
}
table.manga-info tfoot div img {
  margin: 0 5px;
}
table.manga-info tfoot td {
  padding: 10px 0;
}
table.manga-info thead th {
  padding: 10px 0;
}
table.manga-info tbody {
  color: white;
}
table.manga-info tbody a:link, table.manga-info tbody a:visited {
  color: #7EFF82;
}
table.manga-info tbody a:hover {
  color: cyan;
}
table.manga-info tbody td {
  padding: 2px 8px;
}
table.manga-info tbody tr:nth-child(even) {
  background-color: #457757;
}
table.manga-info tbody tr:nth-child(odd) {
  background-color: #21604C;
}

.page-strip {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
}
.page-strip img {
  max-width: 100%;
  margin: 10px;
}

html {
  scroll-behavior: smooth;
}

/* unvisited link */
a:link, a:visited {
  color: #7EFF82;
}

/* mouse over link */
a:hover {
  color: cyan;
}

/*# sourceMappingURL=styles.css.map */