* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #ebbfbf;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  text-align: start;
  background-image: linear-gradient(#230405 50%, black);
}

/* Poster Banner */
.poster-banner{
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 800px;
  margin-bottom: 50px;
  /*Hide the rest of the images which doesn't fit to the container*/
  overflow: hidden;
}


.poster-banner ul{
  position: absolute;
  top: 0;
  left: 0;
}

.poster-banner li{
  float: left;
  list-style: none;
}

/* Banner Image */
.poster-banner li img{
  width: 600px;
  height: 800px;
}

/* Gradient At the Bottom of the Banner */
.poster-banner-gradient{
  position: absolute;
  width: 100%;
  height: 250px;
  bottom: -70px;
  background-image: linear-gradient(to bottom, transparent, #230405);
}
/* End of Poster Banner */

/* Catalogue */
.home-catalogue {
  padding: 0px 50px;
  position: relative;
}

.home-catalogue-title {
  width: fit-content;
  margin-bottom: 30px;
}

.home-catalogue-title h2 {
  margin-bottom: 10px;
  color: #ebbfbf;
  text-shadow: 1px -1px 0px white;
  font-size: 36px;
}

.home-catalogue-title h2:hover {
  text-shadow: 1px -1px 50px white;
}

.home-catalogue-movie {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.home-catalogue-movie-list {
  margin-bottom: 50px;
}

.home-catalogue-movie-list img {
  position: absolute;
  width: 190px;
  height: 250px;
  margin: 10px;
  flex-shrink: 0;
  transition: all 0.7s ease;
}

.home-catalogue-movie-list img:hover {
  width: 230px;
  height: 310px;
  margin: 5px;
  transform: translate(-15px, -10px);
  box-shadow: 0px 0px 30px #ebbfbf;
}

.desc {
  width: 190px;
  height: 30px;
  margin: 265px 10px 0px 10px;
  color: #ebbfbf;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* End of Catalogue */