-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (77 loc) · 1.73 KB
/
style.css
File metadata and controls
87 lines (77 loc) · 1.73 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
75
76
77
78
79
80
81
82
83
84
85
86
87
* {
margin: 0;
padding: 0;
box-sizing: border-box;
cursor: none;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(-45deg, #fee9f7, #e8f5fe, #fef2e8, #f0ffe8);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
overflow: hidden;
position: relative;
}
.cursor {
width: 20px;
height: 20px;
background: pink;
border-radius: 50%;
position: fixed;
pointer-events: none;
mix-blend-mode: difference;
transition: transform 0.2s;
}
.container {
text-align: center;
z-index: 1;
}
h1 {
font-size: 3.5rem;
color: #ff69b4;
text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
margin-bottom: 2rem;
opacity: 0;
}
.greeting {
font-size: 1.5rem;
color: #8a2be2;
margin-bottom: 3rem;
min-height: 2em;
}
.cta-button {
padding: 1rem 2rem;
font-size: 1.2rem;
background: linear-gradient(45deg, #ff69b4, #ff99cc);
border: none;
border-radius: 50px;
color: white;
cursor: pointer;
box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
transition: transform 0.3s, box-shadow 0.3s;
opacity: 0;
}
.cta-button:hover {
transform: scale(1.1);
box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
}
.floating {
position: absolute;
pointer-events: none;
opacity: 0;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@media (max-width: 768px) {
h1 { font-size: 2rem; }
.greeting { font-size: 1.2rem; }
.cta-button { font-size: 1rem; }
}