-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (94 loc) · 1.76 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
@font-face {
font-family: "Permanent Marker";
src: url(./fonts/PermanentMarker.ttf) format("truetype"),
url(./fonts/PermanentMarker.woff) format("woff");
}
body,
h1,
h2,
h3,
h4,
p,
a {
margin: 0;
font-size: 100%;
font-weight: normal;
}
* {
box-sizing: border-box;
}
.page {
font-family: "Inter", sans-serif;
background: #eeeeee;
}
.header {
height: 100vh;
background-image: url('./images/Rwanda\ hills\ of\ tea.jpg');
background-size: cover;
background-position: center;
/* add missing declarations */
}
/* add a CSS rule for the page title here */
.header-title {
color: #fff;
font-size: 190px;
line-height: 140px;
font-family: "Bemio";
font-style: italic;
transform: uppercase;
max-width: 1940px;
margin: auto;
text-align: center;
}
.overlay {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.35);
display: flex;
}
.content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
/* add missing declarations */
max-width: 790px;
margin: 100px auto 50px;
}
/* add CSS rules for cards and their content here */
.card {
width:350px;
object-fit: contain;
margin-bottom: 60px;
padding:45px 45px 70px;
background: rgb(235, 234, 234);
box-shadow: 9px 9px 5px rgba(30, 65, 2, 0.8);
}
.cardtitle {
font-family:'Bemio';
font-size: 24px;
margin-bottom: 10px;
text-align: center;
}
.cardcontent {
font-size: 22px;
font-family: 'Open Sans';
}
.cardpic{
width: 100%;
margin-bottom: 25px;
}
.footer {
display: flex;
min-height: 300px;
background-color: #000;
}
.footertag {
font-size: 44px;
font: bold;
font-family: 'Bemio';
letter-spacing: 10pt;
color: #ffffff;
margin: auto;
/* add missing declarations */
}
/* add a CSS rule for the footer signature */