main {
  background-color: #000;
  color: #fff;
}

#filmPopularList,
#filmUpcomingList,
#topRatedFilmList {
  overflow: auto;
  display: flex;
}
#filmPopularList a,
#filmUpcomingList a,
#topRatedFilmList a {
  margin-right: 1% !important;
}
#filmPopularList a img,
#filmUpcomingList a img,
#topRatedFilmList a img {
  width: 300px;
  height: 100%;
}

/* FILM PAR GENRES */
#filmGenres {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#filmGenres a {
  width: 18%;
  /* text-align: center; */
  margin: 1% !important;
}
#filmGenres a img {
  width: 100%;
  height: 100%;
}
#filmGenres a:hover {
  transform: scale(1.1);
}
h4 {
  font-size: 1.5rem;
}
/* SCROLL BAR HORIZONTAL */
/* width */
#filmPopularList::-webkit-scrollbar,
#filmUpcomingList::-webkit-scrollbar,
#topRatedFilmList::-webkit-scrollbar {
  height: 10px;
}

/* Track */
#filmPopularList::-webkit-scrollbar-track,
#filmUpcomingList::-webkit-scrollbar-track,
#topRatedFilmList::-webkit-scrollbar-track {
  background: #000;
  border-radius: 10px;
}

/* Handle */
#filmPopularList::-webkit-scrollbar-thumb,
#filmUpcomingList::-webkit-scrollbar-thumb,
#topRatedFilmList::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}

#button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#button a {
  margin: 1% 2% !important;
}
#button button {
  border-radius: 10px;
  background-color: red;
}
#button button:hover {
  background-color: #fff;
  color: #000;
}
