-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (72 loc) · 1.41 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,700;1,500;1,600&family=Roboto:ital,wght@0,100;0,300;0,400;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', "Helvetica Neue", Helvetica, sans-serif;
}
.header {
width: 100%;
height: 100vh;
background-image: url(images/image-1.png);
background-color: rgba(0, 0, 0, 0.3);
background-blend-mode: multiply;
background-position: center;
background-size: cover;
padding: 0 7%;
transition: background-image 1s;
}
.logo{
width: 200px;
height: 45px;
}
nav{
position: fixed;
top: 0;
left: 0;
width: 100%;
display: flex;
align-items: center;
}
nav ul {
flex: 1;
text-align: center;
}
nav ul li{
display: inline-block;
margin: 10px 20px;
}
nav ul li a{
text-decoration: none;
color: #fff;
}
nav .btn{
color: #fff;
text-decoration: none;
border: 1px solid #fff;
padding: 10px 30px;
border-radius: 30px;
margin-right: 7%;
}
.info{
width: 100%;
padding: 0 7%;
display: flex;
align-items: center;
color: #fff;
position: fixed;
bottom: 50px;
left: 0;
}
.info div{
margin: 0 20px;
}
.info div h2 {
font-size: 44px;
font-weight: 400;
}
.info .line{
flex: 1;
background: #fff;
height: 4px;
}