-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
43 lines (39 loc) · 600 Bytes
/
styles.css
File metadata and controls
43 lines (39 loc) · 600 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
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
h1 {
font-size: 2.5rem;
color: white;
letter-spacing: 0.277em;
font-weight: 300;
}
.background-video {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(30%);
}
header {
min-height: 100vh;
display: grid;
place-items: center;
}
.preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: white;
display: grid;
justify-content: center;
align-items: center;
z-index: 999;
transition: 0.1s linear;
}