-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutstyle.css
More file actions
64 lines (58 loc) · 1.11 KB
/
aboutstyle.css
File metadata and controls
64 lines (58 loc) · 1.11 KB
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
/* General Styles */
body {
font-family: 'Amiri', serif;
margin: 0;
padding: 0;
background-color: #E4D4C8;
color: #201A1E;
direction: rtl;
text-align: center;
}
/* Hero Section */
.hero {
position: relative;
text-align: center;
background-image: url('homebg.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
height: 60vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: #201A1E;
}
.hero-overlay h1 {
font-size: 36px;
color: #201A1E;
margin-bottom: 10px;
}
.hero-overlay p {
font-size: 20px;
color: #201A1E;
}
/* Container */
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #f3e6d8;
border-radius: 8px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Headings */
h1, h2 {
margin-bottom: 20px;
font-size: 36px;
color: #201A1E;
font-weight: bold;
}
p {
color: #201A1E;
margin: 10px 0;
text-align: center;
font-size: 20px;
line-height: 1.8;
}