body{
    margin: 0;
    width: 100vw;
    height: 100vh;
}
.navbar,.hero-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.navbar{
    background-color: rgb(127, 174, 255);
}
.hero-section{
    box-shadow: 0 0 4px black;
    background-color: aliceblue;
    margin-top: 20px;
    margin-right: 20%;
    margin-left: 20%;
    height: 60vh;
    padding-right: 10px;
    padding-left: 10px;
}
button{
    padding: 2px;
}
button:hover{
    background-color: beige;
}
#movieList{
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  text-align: center;
  flex-direction: column;
}