File size: 2,220 Bytes
739c018
ea386b3
 
 
 
 
19d2497
58cac9f
ea386b3
 
 
 
 
 
58cac9f
 
ea386b3
 
58cac9f
 
ea386b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19d2497
ea386b3
 
 
19d2497
58cac9f
 
ea386b3
 
58cac9f
 
ea386b3
 
19d2497
 
ea386b3
 
 
19d2497
 
ea386b3
 
 
 
739c018
 
ea386b3
 
 
739c018
 
 
ea386b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
739c018
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144

body {
    font-family: sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
}

.navbar {
    background-color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    width: 100px;
}

.navbar-menu {
    list-style: none;
    display: flex;
    padding: 0;
}

.navbar-menu li {
    margin-left: 20px;
}

.navbar-menu li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background-image: url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    font-size: 1.1em;
    cursor: pointer;
}

.container {
    padding: 20px;
}

.movie-row {
    margin-bottom: 30px;
}

.movie-posters {
    display: flex;
    overflow-x: auto;
}

.movie-posters img {
    margin-right: 10px;
    width: 150px;
    height: 200px;
}

.footer {
    background-color: #222;
    padding: 20px;
    text-align: center;
}

.footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footer li {
    margin: 0 10px;
}

.footer li a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-menu {
        margin-top: 10px;
        flex-direction: column;
    }

    .navbar-menu li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero {
        height: 400px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }
}