-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutstyle.css
70 lines (62 loc) · 1.55 KB
/
aboutstyle.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
61
62
63
64
65
66
67
68
69
70
.about-section {
padding: 100px 20px;
background: linear-gradient(135deg, #1e1e1e, #222222);
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
margin-bottom: 50px;
}
.about-container {
display: flex;
flex-wrap: wrap;
max-width: 1200px;
gap: 30px;
align-items: center;
}
.about-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image img:hover {
transform: scale(1.05);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.about-content {
max-width: 600px;
}
.about-content h2 {
font-size: 3rem;
margin-bottom: 20px;
color: #f5a623;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.about-content p {
font-size: 1.2rem;
line-height: 1.8;
color: #e0e0e0;
margin-bottom: 20px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.about-btn {
display: inline-block;
padding: 15px 30px;
background: linear-gradient(45deg, #f5a623, #d87e12);
color: white;
font-size: 1.2rem;
font-weight: bold;
text-decoration: none;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
transition: background 0.3s ease, box-shadow 0.3s ease;
}
.about-btn:hover {
background: linear-gradient(45deg, #d87e12, #b86108);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}