-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (51 loc) · 934 Bytes
/
styles.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
/**
Palette: https://scrimba.com/links/hometown-palette
RED: #E63946
LIGHT: #F1FAEE
AQUA: #A8DADC
LIGHT BLUE: #457B9D
DARK BLUE: #1D3557
*/
body {
margin: 0;
text-align: center;
font-family: 'Cairo', sans-serif;
}
img {
width: 150px;
/* height: 100px; */
}
.hero {
background-image: url("images/istanbul.jpeg");
height: 300px;
background-size: cover;
display: block;
padding-top: 10px;
}
.activities {
background: #E63946;
height: 400px;
display: block;
padding-top: 10px;
justify-content: center
}
.img-acts {
display: flex;
justify-content: space-between;
/* align-items: center; */
}
.img-activities {
border-radius: 50%;
}
.act {
width: 200px;
}
.guide {
width: 300px;
margin: 20px auto;
padding: 20px;
justify-content: space-between;
background: #ddebf8;
color: #457B9D;
border-bottom: 2px solid #1D3557;
}