-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpets.css
40 lines (37 loc) · 789 Bytes
/
pets.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
/* General styling */
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: linear-gradient(to bottom right, #ff9aa2, #ffdae5);
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
/* Message styling */
.message h1 {
font-size: 3rem;
color: #fff;
text-align: center;
margin: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.message h1 span {
color: #ff3e8a;
font-weight: bold;
background: linear-gradient(to right, #ff6f61, #ff9aa2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: colorPulse 2s infinite;
}
/* Highlight animation */
@keyframes colorPulse {
0%, 100% {
filter: brightness(1.2);
}
50% {
filter: brightness(1.5);
}
}