body{
    background-image: url('https://i.pinimg.com/originals/1c/7a/b5/1c7ab54182e50f446aea397aed9989e2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* header of the my fav list to go back and heading */
#heading{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #FAD961;
background-image: linear-gradient(90deg, #FAD961 0%, #F76B1C 100%);



    
    text-align: center;
    height: auto;
}

/* adjusting responsiveness of heading */
#heading h1{
    flex-grow: 3;
}

#heading a{
    font-size: 1.3rem;
    padding-right: 3rem;
}

/* list of superhero */
#list-sprhro{
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: blueviolet;
}

/* childsh - child node of super hero elements */
.childsh{
    padding-top: 2rem;
    flex-direction: row;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.childsh img{
    width: 20rem;
    height: 20rem;
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
}

.childsh img:hover{
    cursor: pointer;
    box-shadow: 0px 0px 5px 5px whitesmoke;
}

.childsh button{
    width: auto;
    margin-right: 5%;
    font-size: 1.5rem;;
    height: 3rem;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
}

/* button hover shadow */
.childsh button:hover{
    cursor: pointer;
    color: grey;
    
    background-color: black;
    box-shadow: 0px 0px 5px 5px whitesmoke;
}


