-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (35 loc) · 744 Bytes
/
style.css
File metadata and controls
40 lines (35 loc) · 744 Bytes
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
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', sans-serif;
background: url('img_about.svg') no-repeat center center fixed;
background-size: cover;
color: white;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
background: rgba(0, 0, 0, 0.6); /* slight dark overlay */
padding: 40px;
border-radius: 12px;
}
h1 {
font-size: 28px;
margin-bottom: 30px;
}
a {
padding: 12px 30px;
font-size: 18px;
background-color: #ff7043;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
transition: 0.3s ease;
}
a {
background-color: #ff5722;
}