/* 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: black;
  color: #BB1f1f;
  font-family: Verdana;
  text-align: center;
}


.fandom {
  border: solid 5px #BB1f1f;
  background-color: white;
}


.fandom-section {
  border: solid 5px #bb1f1f;
  padding: 10px;
  text-align: center;
}


.fandom-link {
  max-width: 150px;
  display: inline;
  padding: 10px;
}



.fandom-name {
  display: inline;
}


.construction {
  display: block;
  padding-top: 10px;
  margin: 0 auto;
}


.container {
  border: solid 5px #bb1f1f;
  text-align: left;
  max-width: 400px;
  padding: 10px;
}


.charainfo {
  text-align: center;
}



.ralsei {
  background-image: url(utdr/ralstand.gif);
  width: 64px;
  height: 86px;
}


.ralsei:hover {
  background-image: url(utdr/ralspell.gif);
}
  
  
nav ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    color: #000000;
    background-image: url(redsparks.gif);
    padding: 5px 20px;
    align-items: flex-start;
}
  
.link,
.link:visited {
  color: #000000;  
  background-color: #bb1f1f;
  border: #bb1f1f;
  text-decoration: none;
  padding: 5px 5px;
  border-radius: 10px;
  display: inline;
}


.link:hover {
  color: #bb1f1f;
  background-color: #000000;
}



.link-nav,
.link-nav:visited {
  color: #bb1f1f;  
  background-color: #000000;
  border: #000000;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 10px;
}


.link-nav:hover {
  color: #000000;
  background: none;
  font-weight: bold;
  text-shadow: 0px 0px 5px white;
}






