body{
    background-image: linear-gradient(140deg, rgb(255, 162, 255), skyblue, rgb(255, 255, 78), rgb(141, 254, 141));
    font-family: sans-serif; 
}
img{
    width:100%;
    height: auto;
}
.container{
    width: 1300px;
    margin: 0 auto;
}
.title{
    background-color: rgba(240, 255, 255, 0.827);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid gray;
    border-radius: 20px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.20);
    font-size: 40px;
    margin-bottom: 60px;
    margin-top: 40px;
}
.film{
    width: 1000px;
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    display: flex;
    border: 1px solid gray;
    border-radius: 20px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.20);
    transition: 0.4s;
    cursor: pointer;
}
.film:hover{
    width: 1050px;
    background-color: rgb(0, 136, 255);
}
.film-img{
    border-radius: 20px;
    margin-right: 30px;
}
.text{
    width: 615px;
}
.film-title {
    font-size: 40px;
    font-weight: 700;
}
p{
    font-size: 24px;
    color: #232323;
}
.bold{
    color: #000;
    font-size: 26px;
    font-weight: 700;
}
.card{
    margin-top: 150px;
    margin-bottom: 150px;
}
.list{
    list-style: none;
    width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px;
    border: 1px solid gray;
    border-radius: 20px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.20);
    text-align: center;
}
.item-title{
    font-size: 40px;
    font-weight: 700;
    color: #232323;
}
.item-link{
    text-decoration: none;
    color: blue;
    font-weight: 900;
    font-size: 28px;
}

.item-link:hover{
    color: rgb(1, 1, 172);
}