
*{
    padding: 0;
    margin: 0;
}
body{
    height: 100%;
    width: 100%;
    background-image: url(./assets/bg-5.jpg);
    background-size: cover;
    font-family: cinzel;
}
      
/*********************************    NavBar-Section   **********************************/
    
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(26, 40, 40);
    height: fit-content;
}
.navbar img{
    height: 50px;
    margin-left: -60px;
    margin-top: 5px;
}      
#main-heading{
    margin-left: -175px;
    color: white;
    font-size: 30px;
} 
#favourites{
    margin-right: 30px;
    font-size: 20px;
    font-weight: 600;
    font-family: cinzel;
    color: white;
    background: none;
    border: 0; 
}   
#favourites:hover{
    cursor: pointer;
    color: red;
}  
#search-key{
    margin-left: 30px;
    height: 25px;
    width: 243px;
    padding: 5px 15px;
    border: 3px solid red;
    border-radius: 20px;   
}

    /********************************* Superhero Lists **********************************/

#display ol {
    display: flex;
    flex-direction: row;
    margin: 20px;
    width: 95vw;
    overflow: auto;
    flex-wrap: wrap;
    list-style: none;
}
.container{
    display: flex;
    flex-direction: column;
    margin: 30px;
    margin-left: 25px;
}
.container p{
    color:white;
    text-align: center;
    font-size: 20px;
    font-family: Cinzel;
    font-weight: bold;
    margin-bottom: 15px;
}
.container button{
    border:0;
    background:none;
    color:lightsalmon;
    cursor:pointer;
    font-size:20px;
    font-family: serif;
    font-weight: 500;
    align-items: center;
    margin-left: 90px;
    margin-top: 15px;
}
#superhero-list{
    height: 81vh;
    width: fit-content;
} 
#superhero-list::-webkit-scrollbar{
    display: none;
}