forked from Jatin-tec/aacharya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (61 loc) · 1.25 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1e1e1e;
background-image: url('background.jpg'); /* Add a suitable background image */
background-size: cover;
background-position: center;
color: #ffffff;
font-family: Arial, sans-serif;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(30, 30, 30, 0.8); /* Add a dark overlay */
}
.container {
text-align: center;
z-index: 1;
animation: fadeIn 2s;
}
.logo {
width: 150px;
margin-bottom: 20px;
}
.message {
font-size: 1.8rem;
margin-bottom: 20px;
animation: slideIn 1.5s;
}
.timer {
font-size: 2.5rem;
font-weight: bold;
animation: pulse 1s infinite;
}
.link {
color: #4caf50;
text-decoration: none;
font-size: 1.2rem;
margin-top: 20px;
display: inline-block;
animation: fadeIn 2s;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideIn {
from { transform: translateY(-50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}