-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·112 lines (98 loc) · 1.62 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
102
103
104
105
106
107
108
109
110
111
112
body,
h1,
h2,
h3,
h4,
p {
margin: 0;
}
* {
box-sizing: border-box;
}
.page {
font-family: Poppins, Arial, Helvetica, sans-serif;
font-weight: 500;
background-color: #151515;
}
.header {
height: 660px;
background-image: url(images/header.jpg);
background-size: cover;
background-position: center;
background-repeat: space;
}
.header__banner {
font-weight: 500;
letter-spacing: -0.64px;
font-size: 16px;
line-height: 15px;
color: #ffe247;
text-transform: uppercase;
margin: 20px auto 0;
}
.header__title {
font-size: 140px;
font-weight: 500;
line-height: 132px;
letter-spacing: -5.6px;
color: #ffe247;
text-transform: uppercase;
margin: 0 auto 20px;
max-width: 1400px;
text-align: center;
}
.overlay {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
max-width: 1000px;
margin: 40px auto;
}
.card {
width: 490px;
min-height: 440px;
background: #ffffff;
}
.card__image {
width: 100%;
display: block;
object-fit: cover;
height: 246px;
}
.card__content {
padding: 20px;
}
.card__title {
font-size: 24px;
line-height: 1.5;
font-weight: 500;
letter-spacing: -0.16px;
color: #151515;
margin-bottom: 10px;
}
.card__text {
font-size: 16px;
line-height: 1.5;
font-weight: 400;
color: #151515;
}
.footer {
padding: 20px 0 40px;
}
.signature {
font-size: 16px;
line-height: 1.5;
font-weight: 400;
color: #efefef;
text-align: center;
}