#navbar {
  width: 100%;
  height: 100px;
  border: 1px solid black;
  display: flex;
  justify-content: end;
}
#navbar > div {
  width: 150px;
  margin-top: 8px;
}
/* div {
  border: 1px solid red;
} */
h3 {
  font-size: 25px;
}

#slideshow {
  width: 95%;
  margin: auto;
  margin-top: 15px;
  /* border: 1px solid red; */
  height: 600px;
}
img {
  width: 99%;
  height: 95%;
  margin:auto;
}

#sort-buttons {
  height: 60px;
  width: 80%;
  margin-top: 15px;
  display: flex;
  margin: auto;
  margin-top: 20px;
  flex-direction: row-reverse;
}
select {
  font-size: 20px;
  width: 150px;
  height: 50px;
  text-align: center;
  border: 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
#movies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  width: 90%;
  padding-bottom: 5px;
  margin: auto;
  margin-top: 20px;
 
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#movies > div > img {
  width: 80%;
  margin-left:5%;
  height: 60%;
}
#movies > div {
  margin-top: 4%;
  margin-left: 15%;
}
#movies > div > h2 {
  font-size: 45px;
  color: black;
  text-align:center;
}
#movies > div > h3 {
  font-size: 30px;
  color: brown;
  text-align:center;
}
#movies > div > h4 {
  font-size: 25px;
  color: red;
  text-align:center;
}
