-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (51 loc) · 997 Bytes
/
styles.css
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
background-image: url("../image-preview/images/beautiful-landscape-from-magazine-coming-life.jpg");
background-color: #323133;
height: 100vh;
background-size: cover;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
}
header {
text-align: center;
padding: 50px;
background: linear-gradient(to right, #6a11cb, #2575fc);
color: white;
border-radius: 8px;
}
h1 {
font-size: 2.5em;
}
main {
margin-top: 20px;
}
h2 {
color: #2575fc;
margin-bottom: 10px;
}
section {
margin-bottom: 30px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
margin-top: 40px;
font-size: 0.9em;
color: #777;
}