-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (66 loc) · 1.12 KB
/
style.css
File metadata and controls
75 lines (66 loc) · 1.12 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
65
66
67
68
69
70
71
72
73
74
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #f8f9fa;
min-height: 100vh;
width: 100%;
display: flex;
justify-content: flex-start;
flex-direction: column;
align-items: center;
font-family: 'Georgia', serif;
color: #333;
padding: 40px 20px;
line-height: 1.7;
}
img {
width: 50px;
height: auto;
margin-bottom: 30px;
}
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 40px;
font-size: 2.2rem;
font-weight: 600;
max-width: 800px;
letter-spacing: -0.5px;
}
p {
background: white;
padding: 25px;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
max-width: 700px;
font-size: 1.1rem;
border-left: 4px solid #3498db;
}
a {
color: #3498db;
text-decoration: underline;
font-weight: 500;
}
a:hover {
color: #2980b9;
}
.button {
background-color: #3498db;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
}
.button:hover {
background-color: #2980b9;
}