html{
  height:100%;
  font-family:arial;
  color: white;
  max-width:99vw;
}


.SearchBarContainer{
  margin: auto;
  width: 500px;
  max-width:95vw;
  height: 100px;
  text-align: center;
  padding-top: 100px;
  /*
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  */
}

/* Auto Complete CSS items*/
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  color:black;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

input[type=text] {
  background-color: #f1f1f1;
  width: 100%;

}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}

/* End of auto complete items  */
.center-item{
  display: inline-block;
  width: 0 auto;
  margin: 5px;
  
    
}

body{
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /*background-image: url("https://mir-s3-cdn-cf.behance.net/project_modules/1400/97091360740885.5a5792e8bd7a2.jpg");*/
  background-color: rgb(0,0,0,1);
  text-align: center;  
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}



.titleLayer{
  background: rgb(0,0,0,.8);
  width:100%;
  height:100%;

}



form{
  margin: 10px;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto; 
}

h1{
  background: grey;
  padding: 5px;
  margin: 5px;

}


.HeaderText{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: White;
  padding: 7px;
  
  font-size: 30px;
  
  visibility: hidden; 
}

.characterList{
  display:flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  /*max-width:100vw;*/
}

.emblemContainer{

  padding:5px;
  position:relative;
  max-width:100vw;
}
.emblem{
    max-width:90vw;  
}


.levelText{
  position:absolute;
  bottom: 21%;
  left:20%;
  font-size:50;
}
.classText{
  position:absolute;
  bottom: 21%;
  left:35%;
  font-size:50;
}
.lightText{
  position:absolute;
  bottom: 21%;
  left:75%;
  font-size:50;
  color:cyan;
}

footer{
  font-family:arial;
  color: grey;
  font-size:.75em;
}

@media only screen and (max-width: 425px) {
  .levelText{
  position:absolute;
  bottom: 21%;
  left:20%;
  font-size:2em;
}
.classText{
  position:absolute;
  bottom: 21%;
  left:35%;
  font-size:2em;
}
.lightText{
  position:absolute;
  bottom: 21%;
  left:75%;
  font-size:2em;
  color:cyan;
}
  
  
  
}