/* Retro 2000s Style */
body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-color: #ffccff;
  color: #0000ff;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ff99ff;
  border: 3px solid #000;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #0000ee;
  text-decoration: underline;
  font-weight: bold;
  margin: 0 10px;
}

img.logo {
  border: 3px dashed #ff00ff;
  display: block;
  margin: 10px auto;
  width: 200px;
  height: auto;
}

main {
  padding: 10px;
}

.character {
  border: 2px solid #000;
  padding: 10px;
  margin: 10px 0;
  background-color: #fff0ff;
  display: inline-block;
  width: 200px;
  text-align: center;
}

.character-img {
  width: 30%;
  height: auto;
  border: 1px solid #000;
}

section {
  border: 2px solid #000;
  padding: 10px;
  margin: 10px 0;
  background-color: #fff0ff;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

a {
  color: #0000ee;
  text-decoration: underline;
}

button {
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-weight: bold;
  margin-top: 10px;
  border: 2px solid #000;
  background-color: #ff99ff;
  color: #0000ff;
  cursor: pointer;
}

/* Hide pages by default except active */
.page { display: none; }
.page.active { display: block; }
