-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
66 lines (59 loc) · 1.06 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
@font-face {
font-family: 'JalnanGothic';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/[email protected]/JalnanGothic.woff')
format('woff');
font-weight: normal;
font-style: normal;
}
* {
caret-color: transparent;
}
body {
font-family: 'JalnanGothic', sans-serif;
}
.title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title h1 {
letter-spacing: 25px;
color: white;
font-weight: 650;
font-size: 90px;
text-align: center;
line-height: 1.3;
margin-left: 17px;
font-style: italic;
}
.title h2 {
letter-spacing: 10px;
margin-top: -2px;
color: white;
font-weight: 500;
font-size: 55px;
text-align: center;
line-height: 1;
}
.title a {
color: white;
font-weight: 500;
font-size: 30px;
text-align: center;
line-height: 0.5;
text-decoration: none;
}
#background-video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}