/* 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." */

body {
  background-image: url("/images/face.gif"); /*url("https://blob.gifcities.org/gifcities/TNP6B6FR5K4KTG3R74UKSH32EEOI2MQW.gif"); */
  background-size: 100px;
  image-rendering: pixelated;
  color: white;
  font-size: 25px;
  font-family: sans-serif, "Comic Sans";
  /* margin: 0; */
} 

p {
  text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.521);
  line-height: 40px;
}

p span {
  background-color: rgba(0, 0, 0, 0.329);
}

h1 {
  font-size: 50px;
  color: lightblue;
  text-shadow: -3px 3px 0 darkcyan;
}

:link {
  color: lightseagreen;
  /* -webkit-text-stroke: 2.5px darkgreen;
  paint-order: stroke fill; */
}

:visited {
  color: lightseagreen;
}

.CharPan {
  margin-top: 10px;
  display: inline-block;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 25px;
  background-color: rgb(165, 0, 0);
  border-radius: 25px;
  width: 350px;
  border: 10px solid rgb(114, 0, 0)
}

.CharPan p{
  font-size: 20px;
  line-height: 20px;
}

.CharPan h1{
  line-height: 20px;
}

.CharPan img{
  image-rendering: initial;
  width: 100px;
  height: 100px;
}

.TextPanel {
  background-color: rgba(58, 0, 0, 0.4);
  margin: 0;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: auto;
  margin-left: -8px;
  margin-right: -8px;
}

table, th, td {
  text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.521);
  border: 5px solid rgb(110, 0, 0);
  padding: 2px;
  border-collapse: collapse;
  font-size: 20px;
  text-align: left;
}