blob: c345a0bda31a63e422edddb4bf067aed0424abf2 (
plain) (
blame)
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
|
:host {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: clip;
}
#hero {
display: flex;
/*flex-direction: column;*/
/*align-items: start;*/
/*justify-content: center;*/
}
h1 {
font-size: 50px;
max-width: 1200px;
}
#cr {
opacity: var(--opacity-cr);
}
#jf {
opacity: var(--opacity-jf);
}
.text-highlight {
color: var(--highlight-color);
}
#right {
max-width: 450px;
max-height: 500px;
display: flex;
justify-content: center;
align-items: center;
/*z-index: -0.5;*/
}
#left {
max-width: 550px;
z-index: 1;
}
|