-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
57 lines (50 loc) · 921 Bytes
/
main.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
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
section {
width: 100vw;
height: 100vh;
position: relative;
}
section video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
section video:nth-child(2) {
mix-blend-mode: screen;
-webkit-filter: brightness(1.5);
filter: brightness(1.5);
}
.below {
padding-top: 5em;
background-image: url(img/back.jpg);
background-size: cover;
}
.below .container {
width: 70%;
max-width: 1170px;
height: 100%;
margin: auto;
overflow: hidden;
}
.below .container h1 {
font-size: 4em;
text-align: center;
}
.below .container h2 {
color: #fff;
text-align: center;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
font-size: 2em;
margin-top: 4em;
}
/*# sourceMappingURL=main.css.map */