* 
{
	margin: 0px;
	padding: 0px;
}
*{
	box-sizing: border-box;
	font-family:  Arial, Helvetica, sans-serif;
}
body {
    font-size: 1.7rem;
    min-height: 100vh;
    background: linear-gradient(169deg, #f64445 0%, #611cac 100%);

}
#container {
    text-align: center;
    width: 97%;
    margin: 0 auto;
	display: flex;
	
	align-content: center;
	justify-content: center
	
}

#appName{
	text-align: center;
	font-size:50px;

}
span{
	color:#ffffff;
}

/*______________Search Bar Style________________*/
#inputBar {
	width: 40%;      
	font-size: 15px;
	border: 2px solid #000000;
	margin-bottom: 70px;
	border-radius: 30px;
	margin-left:10% ;
	text-align: center;
	
}
#btnContainer{
    display: inline;
    text-align: center;
    margin-left: 20px;
    align-items: center;
    
  }
  /*______________Buutton Style________________*/
  .btn {
    background-color: rgb(235,65,77);
    color: rgb(255, 255, 255);
    padding: 10px;
    font-size: 15px;
    margin: 10px;
	margin-bottom: 70px;
    margin-left: 10px;
    min-width: 10px;
    border: 1px solid #01deee;
    border-radius: 100%;
  }

 #search{
	border: 2px solid ;
    border-radius: 3rem;
    padding: 1rem 2rem;
    position: relative;
 }

  #search:hover {
    background-color: rgb(96, 149, 110);
    text-decoration: underline;
    transition-delay: 1s, 300ms;
    transition-property: text-decoration, background-color;
    cursor: pointer; 
  }
 

  #favourite:hover{
    background-color: rgb(244,67,71);
	font-size: large;
    cursor: pointer; 
  }
  #errorMessage {
	font-size: large;
	color: rgb(255, 255, 255);
	text-align: center;  
	margin-bottom: 70px;
	margin-top: -50px;

	
}
/*________________SuperHero List Style_______________________*/
ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	list-style-type: none;
	border-radius: 40px;
	position: absolute;
	top: 25%;
	bottom: 0px;
	overflow-y: scroll;
    text-align: center;
	justify-content: space-evenly;  
    
}
/*________________SuperHero Item List Style__________________*/
li {
	background-color: rgba(0, 0, 0, 0.623);
	color: #f3f3f3;
	width: 300px;
	height: 350px;
	box-shadow: 1px 1px 1px 1px rgb(252, 252, 255);
	border-radius: 10%;
	border: 2px solid #01deee;
    display: inline-flex;
    overflow: hidden;
    flex-shrink: 3;
    margin: 20px 10px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: column;


}

li img {
	width: 200px;
	height: 200px;
	padding: 20px;
	border-radius: 100%;
}

li #heroTitle {
	font-size: 1em;
	color: #ffffff;	
	margin-top:0.0px;
	text-align: center;

}

li #favBtn, #details {
	background-color: rgb(235,65,77);
    color: rgb(255, 255, 255);
	padding: 8px;    
	margin-bottom: 10px;    
	border: 1px solid #01deee;
	border-radius: 100%;    
    height: fit-content;
    width:fit-content ;
}
li #favBtn:hover, #details:hover {
	font-size: large;
	transition-delay: 200ms;
	transition-property: all;
	transition-delay: 1s, 300ms;
	transition-property: text-decoration;
	background-color: rgb(244,67,71);
	cursor: pointer;
}
/*________________ScrollBar Style_______________________*/
/* width */
::-webkit-scrollbar {
	width: 10px;
	padding: 20px;    /* display: none; */
}
/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
	padding: 20px;
	display: none;
}
/* Handle */
::-webkit-scrollbar-thumb {
	background: rgb(255, 255, 255);
	border-radius: 10px;
	padding: 20px;
}