-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (78 loc) · 1.34 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
header {
z-index: 999;
position: absolute;
top: 0;
left: 0;
width: 100%;
align-items: center;
padding: 15px 200px;
transition: 0.5s ease;
}
header #navigation {
position: relative;
}
header #navigation #navigation-items a {
position: relative;
color: #fff;
font-size: 1em;
font-weight: 500;
text-decoration: none;
margin-left: 30px;
transition: 0.3s ease;
}
header #navigation #nav-items a:hover:before {
width: 100%;
}
header #navigation a {
margin-left: 30px;
}
#home {
padding: 100px 200px;
}
#home {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
background: #2696e9;
}
#home:before {
z-index: 777;
content: "";
position: absolute;
background: rgba(3, 96, 251, 0.3);
width: 100%;
height: 100%;
top: 0;
left: 0;
}
video {
z-index: 000;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
#content {
z-index: 888;
color: #fff;
width: 70%;
margin-top: 50px;
}
@media (max-width: 560px) {
#home #content h1 {
font-size: 3em;
line-height: 60px;
}
}