/* 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-color: white;
  color: black;
  font-family: cursive;
  margin: 0;
  padding: 0;
  font-size: 20px;
}
h1 {
  font-size: 1.55em;
  text-align: center;
}
h1, h2, p {
margin: 10px;
}
/*Navigation bar! Very important! I'm so happy it works!!!*/
.navbar {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #38444d;
  font-size: 12px;
}
li {
  float: left;
  }
.listings a, .dropblue {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.listings a:hover {
  background-color: purple;
  }

.blue:hover .dropblue {
  background-color: blue;
}

.blue {
  display: inline-block;
}

.blueplayers {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

.blueplayers a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.blueplayers a:hover {background-color: #f1f1f1;}

.blue:hover .blueplayers {
  display: block;
}
.red:hover .dropred {
  background-color: red;
}

.red {
  display: inline-block;
}

.redplayers {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

.redplayers a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.redplayers a:hover {background-color: #f1f1f1;}

.red:hover .redplayers {
  display: block;
}
/*End navigation bar!*/
.characters {
  display: block;
  }

.artcredit {
  text-align: center;
  }
.image {
display: block;
margin: 15px 250px;
padding: 10px;
}

.charactermain {
  height: 700px;
  width: 700px;
  }
.redmaininfo {
  float: left;
  margin: 20px 50px;
  }