/* 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("backgroundwebsite0001.gif");
  color: yellow;
  font-family: Verdana;
}
  a {
  color: orange;
}
.text-box-left {
  width: 300px;
  background: purple;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 50px;
}
.text-box-right {
  width: 300px;
  background: purple;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 50px;
}
.character-sheets {
  width: 300px;
  background: purple;
  padding: 20px;
  position: absolute;
  border: 3px dashed yellow;
  left: 5%;
  top: 500px;
}
 
.character-middle{
  width: 300px;
  background: purple;
  padding: 20px;
  position: absolute;
  border: 3px dashed yellow;
  left: 38%;
  top: 500px;
}
  .character-right{
  width: 300px;
  background: purple;
  padding: 20px;
  position: absolute;
  border: 3px dashed yellow;
  right: 00%;
  top: 500px;
  }
  .linebreak{
    width:300px;
    background: purple;
    padding: 20px;
    position: absolute;
    border: 3px groove yellow;
    left: 38%;
    top: 340px;
  }
  .characterinfos{
  width: 300px;
  background: purple;
  padding: 30px;
  position: absolute;
  border: 3px dashed yellow;
  left: 5%;
  top: 5px;
  }