-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (59 loc) · 1.06 KB
/
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
63
64
65
66
67
68
69
70
71
72
:root {
--main-font: 'Helvetica', sans-serif;
--secondary-font: 'Gill Sans', sans-serif;
}
h1 {
font-family: var(--main-font);
font-weight: 500;
}
h2 {
font-family: var(--secondary-font);
font-weight: 250;
}
h3 {
font-family: var(--secondary-font);
font-weight: 150;
}
p {
font-family: var(--secondary-font);
}
.content {
background-color: #f5f5f5;
}
.main-header {
text-align: center;
font-size: 52px;
}
.secondary-header {
text-align: center;
font-size: 26px;
}
.third-header-1 {
text-align: center;
font-size: 20px;
}
.image-container {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
margin-top: 50px;
margin-bottom: 50px;
}
.image {
float: left;
margin-left: 20px;
margin-right: 20px;
max-width: 50%;
max-height: 375px; /* Maintain aspect ratio */
border: 5px solid #000000;
border-radius: 1%;
}
.image-description {
text-align: left;
line-height: 1.50;
}
.third-header-2 {
text-align: center;
font-size: 20px;
}