-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
120 lines (106 loc) · 1.79 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
113
114
115
116
117
118
119
120
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
}
.main-container {
border: 8px solid black;
background-color: #e5e5fd;
padding: 40px;
width: 60%;
}
.top-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
}
.image-container {
width: 314px;
height: auto;
}
.image-container img {
width: 100%;
height: auto;
}
.text-container {
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.text-container h1 {
font-family: "Inter";
font-style: normal;
font-weight: 500;
font-size: 3vw;
line-height: 20px;
margin: 10px;
text-align: right;
}
.text-container h2 {
font-family: "Inter";
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 20px;
margin: 10px;
}
/* Middle */
.middle-container {
padding: 20px;
}
.middle-container h1 {
font-family: "Inter";
font-style: normal;
font-weight: 500;
font-size: 3vw;
line-height: 20px;
margin: 10px;
}
.middle-container p {
margin: 40px 10px;
font-family: "Inter";
font-style: normal;
font-weight: 700;
font-size: 12px;
line-height: 22px;
text-align: justify;
}
/* Bottom */
.bottom-container {
padding: 20px;
}
.bottom-container h6 {
margin: 10px;
font-family: "Inter";
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 20px;
}
.bottom-container ul li {
margin: 10px 28px;
font-family: "Inter";
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 20px;
text-align: justify;
}
/* Footer */
.footer-container {
display: flex;
justify-content: flex-end;
padding: 20px;
}
.footer-container span {
font-family: "Inter";
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 20px;
}