-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (43 loc) · 862 Bytes
/
Copy pathstyles.css
File metadata and controls
48 lines (43 loc) · 862 Bytes
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body, html {
height: 100%;
font-family: Arial, sans-serif;
overflow: hidden; /* Prevents scrolling */
}
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('images/background.png') no-repeat center center;
background-size: cover; /* Ensures it fills the screen */
filter: blur(8px);
z-index: -1;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
text-align: center;
color: white;
}
.logo {
width: 400px;
height: auto;
opacity: 100; /* Initial state for fade-in effect */
}
footer {
position: fixed;
bottom: 10px;
width: 100%;
text-align: center;
color: white;
font-size: 14px;
}