-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 833 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600&display=swap");
body {
margin: 0;
padding: 0;
font-family: "Big Shoulders Display", cursive;
height: 100px;
}
.banner {
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.banner video {
position: fixed;
top: 0;
left: 0;
object-fit: cover;
width: 100%;
}
.banner .content {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
text-align: center;
}
.banner .content h1 {
margin: 0;
padding: 0;
font-size: 5.5em;
text-transform: uppercase;
color: #ffff;
}
.banner .content p {
font-size: 1.5em;
color: #ffff;
}
.banner .content img {
width: 40px;
height: 40px;
}