/* landing page style for Back to the Future movie */
body {
font-family: "Arial", sans-serif;
background-color: #F3F3F3;
color: #333333;
text-align: center;
}
h1 {
font-size: 42px;
font-weight: bold;
margin-bottom: 20px;
}
.landing-section {
max-width: 900px;
margin: 0 auto;
padding: 30px;
box-sizing: border-box;
}
.landing-section img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
.landing-section p {
font-size: 18px;
line-height: 1.5;
margin: 20px 0;
}
.landing-section a {
display: inline-block;
padding: 10px 20px;
color: white;
background-color: #0074D9;
border-radius: 5px;
text-decoration: none;
font-size: 16px;
font-weight: bold;
}
.landing-section a:hover {
background-color: #0063C6;
}
.landing-section .trailer-section {
margin-top: 40px;
}
.landing-section .trailer-section iframe {
width: 100%;
height: 600px;
border: 0;
}