-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (79 loc) · 1.37 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
*{
margin: 0%;
padding: 0%;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
html{
font-size: 62.5%;
}
.header{
width: 100%;
height: 100vh;
background-image: url(images/image-1.png);
background-color: rgba(0, 0, 0, 0.5);
background-blend-mode: multiply;
background-position: center;
background-size: cover;
padding: 0 7%;
transition: background-image 1s;
}
nav{
position: fixed;
top: 0;
left: 0;
width: 100%;
display: flex;
align-items: center;
}
.logo{
width: 32rem;
cursor: pointer;
}
nav ul{
flex: 1;
text-align: center;
}
nav ul li{
display: inline-block;
}
nav ul li a{
margin: 1rem 2rem;
text-decoration: none;
color: #fff;
font-size: 1.7rem;
}
nav .btn{
color: #fff;
text-decoration: none;
border: .1rem solid #fff;
padding: 1rem 3rem;
border-radius: 3rem;
margin-right: 7%;
}
nav .btn:hover{
background: #fff;
color: #000;
}
.info{
width: 100%;
padding: 0 7%;
display: flex;
align-items: center;
color: #fff;
position: fixed;
bottom: 5rem;
left: 0;
}
.info div{
margin: 0 2rem;
}
.info div h2{
font-size: 4.4rem;
font-weight: 400;
}
.info .line{
flex: 1;
background: #fff;
height : .4rem;
}