/*#2c2368 = akuma #edd400 = aurum #a4cbc7 = grayscale #a01320 = akuma */

body {background-color: #121212;}
.normaltext {
  color: white;
  margin: 20px 20px 20px 20px; /* top, right, bottom, left */
}

.main {
  margin: 50px auto 0px auto;
  width: 50%;
  height: 25%;
  overflow: auto;
  border: 2px solid white;
  overflow-wrap: break-word;
}

.characters {
  margin: 50px auto 150px auto;
  width: 50%;
  border: 2px solid white;
  text-align: center;

  /* new */
  padding: 80px 0;       /* vertical space */
}

.charactertext p {
  margin: 40px 0;        /* space between lines */
}

.charactertext a {
  text-decoration: none;
  font-size: 3rem;       /* smaller than before */
  padding: 0 25px;       /* horizontal spacing */
  transition: text-shadow .2s ease;
}

.charactertext a:hover {
  text-shadow: 0 0 12px currentColor;
  cursor: pointer;
}