-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
97 lines (86 loc) · 1.53 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, sans-serif;
}
body {
background: #000;
height: 100vh;
color: #fff;
overflow: hidden;
}
.container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}
.container::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 150px;
height: 150px;
background: #0066cc;
filter: blur(100px);
opacity: 0.5;
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0% {
transform: translate(-50%, -50%) scale(1);
opacity: 0.5;
}
50% {
transform: translate(-50%, -50%) scale(1.5);
opacity: 0.3;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0.5;
}
}
.content {
position: relative;
z-index: 1;
padding: 20px;
}
h1 {
font-size: 5rem;
font-weight: 500;
margin-bottom: 20px;
background: linear-gradient(to right, #fff, #999);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -2px;
}
p {
font-size: 1.5rem;
margin-bottom: 40px;
font-weight: 300;
color: #999;
}
@media (max-width: 768px) {
h1 {
font-size: 3.5rem;
}
p {
font-size: 1.2rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2.5rem;
}
p {
font-size: 1rem;
}
}