
*{
    padding: 0;
    margin: 0;
}
body{
    height: 100%;
    width: 100%;
    background-image: url(./assets/bg-3-1.jpg);
    background-size: cover;
    font-family: cinzel;
}

#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: 08rem;
    margin-top: 5px;
}
#main-heading{
    width: fit-content;
}
#main-heading h1{
    text-align: center;
    color: white;
    font-size: 30px;
    font-family: cinzel;
    margin-right: 35rem;
}
#home_button{
    margin-left: 30px;
    font-size: 20px;
    font-weight: 600;
    font-family: cinzel;
    color: white;
    background: none;
    border: 0;
}
#home_button:hover{
    cursor: pointer;
    color: red;
}


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

ol{
    display: flex;
    flex-direction: row;
    margin: 20px 80px;
    overflow: auto;
    flex-wrap: wrap;
    list-style: none;
}
.container{
    display: flex;
    flex-direction: column;
    margin: 40px;
    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: 10px;
    margin-top: 15px;
}
#list{
    height: 81vh;
    width: fit-content;
}
#list::-webkit-scrollbar{
    display: none;
}