/* favourite cards center flex */
#FavouriteCards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
}

/* setting hero background image with thick border */
.favouriteCardBackground {
    background-image: linear-gradient(45deg, red, pink, blue);
    border-width: thick
}