/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
	font-family: "Humour";
	src: url(/Humour-Normal.woff2) format("woff2");
}

body {
  background-color: #c7ccff;
  color: #1e2352;
  font-family: "Humour", "Brush Script MT", cursive;
  font-size: 24px;
  line-height: 1.2;
}

h1 {
  text-align: center;
  font-size: 72px;
  color: #1e2352;
  margin: 15px;
}

h2 {
  text-align: center;
  color: #1e2352;
  margin-bottom: 2%;
}

hr {
  height: 1px;
  border-width: 0px;
  color: #1e2352;
  background-color: #1e2352;
  margin-top: 5px;
  margin-bottom: 5px;
}

.mainContainer {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 4fr) 1fr;
  gap: 3px 10px;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 2%;
  text-align: center;
}

.mainContainer nav {
  grid-column-start: 1;
  grid-column-end: 4;
  font-size: 16px;
}

nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #c7ccff;
  justify-content: center;
  border: 10px solid #949eff;
  border-radius: 5px;
}

nav ul li {
  float: left;
  text-align: center;
}

nav ul li a {
  display: grid;
  color: #1e2352;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  margin-left: 3px;
  margin-right: 3px;
}

ul li a:hover {
  background-color: #949eff;
}

.mainContainer > .side {
  font-size: 16px;
}

.en-jp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.section, .en-jp div {
  padding: 10px;
  background-color: #c7ccff;
  border: 10px solid #949eff;
  border-radius: 5px;
  margin-bottom: 3px;
}

#statuscafe {
  padding: 10px;
  background-color: #c7ccff;
  border: 10px solid #949eff;
  border-radius: 5px;
  margin-bottom: 3px;
}

#statuscafe-username {
  margin-bottom: .5em;
}
#statuscafe-content {
  margin: 0 1em;
}

.tab {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: 10px;
}

.tab button {
  font-family: "Humour", "Brush Script MT", cursive;
  font-size: 24px;
  background-color: inherit;
  border: 10px solid #949eff;
  border-radius: 5px;
  outline: none;
  padding: 5px 5px;
  transition: 0.2s;
}

.tab button:hover {
  background-color: #949eff;
}

.tab button.active {
  background-color: #949eff;
}

.tabcontent {
  display: none;
  padding: 5px 5px;
  border: 10px solid #949eff;
  border-radius: 5px;
}

.music-player{
  text-align: left;
}

.changelog > table {
  width: 100%;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  border: 10px solid #c7ccff;
}

textarea {
  height: 110px;
  width: 200px;
  resize: none;
}

th, tr, td {
  padding: 6px;;
}

div.book-scroll {
  width: 100%;
  overflow: scroll;
  white-space: nowrap;
}

div.book-scroll img {
  padding: 5px;
  max-width: 150px;
  max-height: 220px;
}

div.music-scroll {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  overflow-y: auto;
  height: 320px;
}

div.music-scroll img {
  padding: 6px;
  max-width: 150px;
  max-height: 150px;
  aspect-ratio: 1;
}

div.music-scroll button {
  background-color: #c7ccff;
  border: none;
  padding: 0px;
}

.cdr-widget {
  color: #1e2352;
  font-family:"Humour", "Brush Script MT", cursive !important;
  font-size: 16px;
  text-transform: lowercase;
}