@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Roboto:wght@400;500&display=swap");
* {
  padding: 0px;
  margin: 0px;
}

body {
  background-color: rgb(8, 8, 8);
  color: rgb(255, 255, 255);
}

#heading {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  padding: 31px 0;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
#heading button,
#heading #home {
  border: none;
  background: none;
  font-size: 2rem;
}
#heading button i,
#heading #home i {
  color: red;
  padding-left: 3rem;
}
#heading button :hover,
#heading #home :hover {
  border: none;
  background: none;
  font-size: 2rem;
  color: white;
}
#heading span {
  margin-left: 5rem;
}
#heading #clearall {
  padding-right: 50px;
}
#heading #clearall button {
  border: none;
  background: none;
  font-size: 1.8rem;
}
#heading #clearall #clear-whole-list {
  cursor: pointer;
  color: red;
}
#heading #clearall :hover {
  color: white;
}

#list-container {
  margin: auto;
  margin-top: 2rem;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-evenly;
  font-family: "Poppins", sans-serif;
}
#list-container .movie-details {
  margin: 10px;
  border-radius: 20px;
}
#list-container .movie-details .thumbnail #movieimg {
  border-radius: 20px;
  height: 400px;
  width: 280px;
  transition: all 0.3s linear;
}
#list-container .movie-details .thumbnail :hover {
  transform: scale(1.1);
}
#list-container .movie-details #details {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 18px;
}
#list-container .movie-details #details .title {
  width: 200px;
  margin-left: -3rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.2s linear;
}
#list-container .movie-details #details .title a {
  font-size: 1.7rem;
  color: rgb(255, 255, 255);
  font-weight: 500;
  text-decoration: none;
}
#list-container .movie-details #details #removeicon {
  font-size: 1.6rem;
  color: red;
  cursor: pointer;
  transition: all 0.2s linear;
}
#list-container .movie-details #details :hover {
  transform: scale(1.1);
}/*# sourceMappingURL=myfav.css.map */