blob: 85d95acbea879e85d673f089494db42c1fdc428d (
plain)
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
|
html,
body,
#app {
position: relative;
width: 100%;
height: 100%;
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Poppins", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
main {
display: flex;
justify-content: space-around;
align-items: center;
height: 100%;
width: 66%;
margin: auto;
}
h1 {
font-size: 35px;
font-weight: 400;
}
.left-segment {
width: 315px;
}
.right-segment {
width: 315px;
height: 100%;
padding-top: 225px;
box-sizing: border-box;
}
p {
color: #626262;
font-size: 16px;
margin-bottom: 30px;
}
|