MovieMania – Your Ultimate Movie Destination

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Arial’, sans-serif;
}

body {
background-color: #1a1a1a;
color: #ffffff;
}

/* Header Styles */
header {
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(‘https://source.unsplash.com/random/1920×1080/?movie’);
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}

header h1 {
font-size: 4rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

header p {
font-size: 1.5rem;
margin-bottom: 2rem;
}

.cta-button {
padding: 15px 30px;
background-color: #e50914;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-size: 1.2rem;
transition: background-color 0.3s;
}

.cta-button:hover {
background-color: #b20710;
}

/* Movie Showcase */
.movie-showcase {
padding: 50px 20px;
max-width: 1200px;
margin: 0 auto;
}

.movie-showcase h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 30px;
}

.movie-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.movie-card {
background-color: #2a2a2a;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s;
}

.movie-card:hover {
transform: scale(1.05);
}

.movie-card img {
width: 100%;
height: 300px;
object-fit: cover;
}

.movie-card h3 {
padding: 15px;
font-size: 1.2rem;
}

/* Footer */
footer {
background-color: #111;
padding: 20px;
text-align: center;
margin-top: 50px;
}

footer p {
font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
header h1 {
font-size: 2.5rem;
}

header p {
font-size: 1rem;
}

.movie-showcase h2 {
font-size: 2rem;
}
}

Welcome to MovieMania

Your ultimate destination for movie reviews, trailers, and showtimes

Explore Movies

Featured Movies

Movie 1

Action Blockbuster

Movie 2

Heartfelt Drama

Movie 3

Hilarious Comedy

Movie 4

Sci-Fi Adventure

© 2025 MovieMania. All rights reserved.

// Smooth scroll for CTA button
document.querySelector(‘.cta-button’).addEventListener(‘click’, (e) => {
e.preventDefault();
document.querySelector(‘#movies’).scrollIntoView({ behavior: ‘smooth’ });
});

Design a site like this with WordPress.com
Get started