*{
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

.navigation{
    height: 80px;
    width: 100%;
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
}

.container{
    width: 80%;
    height: 80px;
    display: flex;
    justify-content: space-between;
}

.container-fluid{
    width: 80%;
    margin: auto;
    display: flex;
    padding: 1rem;
    flex-direction: column;
}

/* logo css  */

.logo{
    width: 20%;
    font-size: 30px;
    font-family: 'Segoe UI';
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
}

/* navigation css  */
.nav{
    width: 35%;
    height: 80px;
}

.nav-links{
    display: flex;
}

.nav-link{
    list-style-type:none;
    height: 80px;
    width: 25%;
    text-align: center;
    line-height: 80px;
    font-family: 'segoe UI';
    cursor: pointer;
}

.nav-link:hover{
    background-color: #f1f1f1;
    transition: 0.3s ease-in-out;
}

.nav-link:hover a {
    color: #1f1f1f;
    transition: 0.3s ease-in-out;
}


/* banner css  */

.banner{
    height: 700px;
    width: 100%;
    background-color: lightblue;
    background-image: url('./images/Tomhardy.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
}

.banner-section{
    height: 200px;
    width: 40%;
    margin-left: 10%;
    font-size: 100px;
    font-weight: bold;
    font-family: 'segoe UI';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
}

.btn{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    background-color: #1f1f1f;
    color: #f1f1f1;
    cursor: pointer;
}

.btn:hover{
    transition: 0.3s ease-in;
    background-color: #1f9fef;
}

/* films css  */

.films{
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.films-container{
    width: 80%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.title{
    font-family: 'segoe UI';
    text-align: center;
    font-size: 2.5rem;
}

.film-card{
    width: 22%;
    height: 450px;
    background-color: #ffff66;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
    background-blend-mode: darken;
}

.film-detail{
    height: 225px;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    transition: .4s;
    cursor: pointer;
}

.film-detail:hover{
    height: 450px;
}

.film-title{
    color: white;
    font-family: 'segoe UI';
    font-size: 40px;
}

.padd{
    padding: 20px;
}

.card-1{
    background-image: url('https://i.pinimg.com/originals/d9/86/b0/d986b00ecfeb4e8af7b3eb06640a9833.jpg');
}

.card-2{
    background-image: url('https://i.pinimg.com/736x/0a/60/94/0a609461ee8815d563f0d2bdc310dd0a--movie-titles-the-movie.jpg');
}

.card-3{
    background-image: url('https://www.denofgeek.com/wp-content/uploads/2020/02/thedarkknightrises1.jpg');
}

.card-4{
    background-image: url('https://ae01.alicdn.com/kf/H942f5e879af04853ba51096ec35f255f2/Hot-Classic-Mad-Max-Fury-Road-Immortan-Joe-Movie-Silk-Fabric-Wall-Poster-Art-Decor-Sticker.jpg_Q90.jpg_.webp');
}

.card-5{
    background-image: url('https://m.media-amazon.com/images/M/MV5BMTM0MjUzNjkwMl5BMl5BanBnXkFtZTcwNjY0OTk1Mw@@._V1_.jpg');
}

.about-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #19082b;
    margin-bottom: 1rem;
}

.about-img img{
    width: 100%;
    height: 100%;
}


a {
    color: #f1f1f1;
    text-decoration: none;
}

.franchise-container{
    width: 80%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card {
    width: 22%;
    height: auto;
    box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.2);
}

.card-img {
    width: 100%;
    height: auto;
}

.card-img img {
    width: 100%;
    height: auto;
}

.franchise-detail {
    padding: 1rem;
}

.footer {
    background-color: #1f1f1f;
    color: #f1f1f1;
    font-size: 1.5rem;
}

.footer center {
    padding: 1.5rem;
}

