-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (87 loc) · 1.43 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
91
92
93
94
95
96
97
98
99
100
101
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: rubik, sans-serif;
color: #444;
}
header {
height: 100vh;
position: relative;
background-image: linear-gradient(
rgba(34, 34, 34, 0.6),
rgba(34, 34, 34, 0.6)
),
url(hero\ img.jpg);
background-size: cover;
color: #fff;
}
.header-container {
width: 1200px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.header-container-inner {
width: 50%;
}
.container {
margin: 0 auto;
width: 1200px;
}
nav {
display: flex;
justify-content: space-between;
padding-top: 30px;
font-size: 20px;
font-weight: 700;
}
a {
color: #fff;
text-transform: uppercase;
text-decoration: none;
padding: 0 6px;
}
a:hover {
color: #e67e22;
}
h1 {
font-size: 50px;
margin-bottom: 32px;
line-height: 1.05;
}
p {
font-size: 20px;
line-height: 1.6;
margin-bottom: 48px;
}
.btn:link,
.btn:visited {
font-size: 20px;
font-weight: 600;
background-color: #e67e22;
color: #fff;
text-decoration: none;
display: inline-block;
padding: 16px 32px;
border-radius: 9px;
}
.btn:hover {
background-color: #fff;
color: #e67e22;
}
h2 {
font-size: 44px;
margin-bottom: 48px;
}
section {
padding: 96px 0;
background-color: #f7f7f7;
}
footer {
color: black;
font-size: 16px;
}