moviereview / styles1.css
JAYASWAROOP's picture
Upload 12 files
b361446
raw
history blame contribute delete
943 Bytes
body {
font-family: Arial, sans-serif;
padding: 20px;
background-image: url("https://img.freepik.com/free-vector/cinema-film-strips-blue-background_1017-23456.jpg");
background-size: cover;
}
.movie {
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
margin-bottom: 30px;
transition: transform 0.2s ease-in-out;
background-color: #ffffff;
}
.movie:hover {
transform: scale(1.02);
}
h1{
color: #ffffff;
}
.movie img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 5px;
}
.movie-details {
margin-top: 20px;
}
.rating {
display: flex;
align-items: center;
}
.star {
color: #fdd835;
font-size: 20px;
margin-right: 5px;
}
.review {
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
footer {
margin-top: 30px;
text-align: center;
}