-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (43 loc) · 897 Bytes
/
style.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
body {
margin: 0;
overflow: hidden;
height: 100vh;
background-color: #000;
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
#text-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
z-index: 1;
}
canvas {
position: absolute;
top: 0;
left: 0;
}
.hidden {
visibility: hidden;
}
a#birthdayButton {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
color: #fff;
background: linear-gradient(45deg, #ff007f, #7f00ff);
text-decoration: none;
font-size: 18px;
font-weight: bold;
border-radius: 5px;
transition: background 0.3s, transform 0.3s;
}
a#birthdayButton:hover {
background: linear-gradient(45deg, #7f00ff, #ff007f);
transform: scale(1.1);
}