-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (45 loc) · 787 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: linear-gradient(135deg, #f0f2f5 0%, #bbc1cc 50%, #8a8f99 100%);
}
.container {
max-width: 900px;
margin: 40px auto;
text-align: center;
}
.title {
font-size: 4rem;
font-weight: bold;
margin-bottom: 20px;
}
.links {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 20px;
background: #000;
border-radius: 12px;
}
.btn {
display: block;
width: 100%;
padding: 12px 16px;
font-size: 1rem;
text-align: center;
color: #fff;
background: #222;
border: 2px solid #444;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
}
.btn:hover {
background: #444;
border-color: #fff;
}