/* styles for film list page */

.film_posters {
    width: 170px;
    height: 170px;
    border-radius: 5%;

}
.film-text a{
    text-decoration: none;
    font-weight: bold;
}
.actor_images {
    height: 100px;
    width: 100px;
}

.film-details {
    font-weight: bold;
}

.actor_detail {
    height: 150px;
    width: 150px;
}

.pagination{
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination * {
    margin: 0 5px
}

/* media queries */
@media screen and (max-width: 576px) {
    .film-text{
        text-align: center;
        margin-top: 10px;
    }
    .film-poster-container{
        margin: auto;
        text-align: center;
    }
}
