#navbar{
    display:flex;
    flex-direction: row;
    gap:20px;
    justify-content: right;
    border:2px solid black;
    width:90%;
    height:40px;
    margin:auto;
}
#navbar>div{
    padding:10px;
    font-family: Arial, Helvetica, sans-serif;
}
a{
    text-decoration: none;
    color:black;
}
#slideshow>img{
    width:90%;
    height:300px;
    margin-top:20px;
    margin-left:5%;
}


#sort-buttons{
    width:87%;
    height:40px;
    margin:auto;
    box-sizing:border-box;
    margin-bottom:10px;
    margin-top:10px;
}

button{
    height:35px;
    width:200px;
    margin-left:10px;
    border:2px solid pink;
    background-color: transparent;
}

#movies{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:repeat(3,auto);
    grid-gap:20px;
    width:90%;
    margin:auto;
    text-align:center;
}

#imge{
    height:300px;
    width:90%;
}