/* normalize css */
* {
  margin: 0;
  padding: 0;
}

/* main css */
body {
  background-image: url("marvelImg.jpg");
  background-attachment: fixed;
  background-size: 100% 100%;
}

/* navigation css start here */
nav {
  background-color: #050A30;
  position: fixed;
}

/* title */
.super {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: larger;
}

/* navigation css end here */

/* container css start here */
#favouriteContainer {
  height: 80%;
  width: 80%;
}

/* card css start here */
.superhero {
  width: 25rem;
  background-color: rgb(243, 58, 106, 0.9);
  margin-top: 5%;
  margin-left: 30%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* side 1 css */
.left {
  width: 100%;
}

/* card image */
.superhero img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

/* side 2 css */
.right {
  width: 100%;
  margin-left: 10px;
  text-align: center;
}

/* card header container*/
.name {
  width: 100%;
  height: 70px;
  overflow: hidden;
  color: white;
  margin-left: -9%;
  font-family: sans-serif;
}

/* card header */
.superhero h2 {
  color: white;
  font-family: sans-serif;
  margin-left: 10%;
  width: 100%;
}

/* go to single page link text css */
.info {
  font-family: cursive;
  color: white;
  margin-top: 15%;
  font-size: x-large;
  cursor: pointer;
}

/* remove button css */
.remove {
  border-radius: 15px;
  margin-top: 15px;
  border: none;
  outline: none;
  background-color: rgb(200, 200, 200);
  padding: 5px 0px;
  font-weight: 600;
}

/* hover effect */
.remove:hover {
  background-color: red;
  color: rgb(200, 200, 200);
}

/* favourites heart css */
.fa-heart {
  position: absolute;
  right: 50px;
  top: 15px;
}

.red {
  color: red
}

/* card css end here */

/* container css end here */