blob: 846c2396a8d15b3fa3743a1d782ddd02c968b053 (
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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
@use "reset";
$background: hsl(15, 10%, 5%);
$text: hsl(0, 0%, 100%);
body {
font-size: 22px;
font-family: sans-serif;
background: $background;
color: $text;
}
h1 {
font-size: 3em;
font-weight: bold;
margin-bottom: 1rem;
font-family: serif;
}
h2 {
font-size: 2em;
font-weight: bold;
margin-bottom: 2rem;
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1.25em;
}
p {
line-height: 1.15em;
margin-bottom: 1rem;
&:last-child {
margin-bottom: 0;
}
}
ul {
list-style: disc inside;
margin-top: -0.5rem;
}
li {
line-height: 1.15em;
}
a {
color: $text;
}
footer {
background: $background;
color: $text;
display: flex;
gap: 1rem;
flex-direction: column;
padding: 4rem 8rem;
text-align: center;
& p {
margin-bottom: 0;
}
}
header {
height: 100vh;
box-sizing: border-box;
padding: 2.5% 5%;
color: $text;
background-image: url("/home.jpg");
background-size: cover;
background-position: center;
}
.tags {
display: flex;
gap: 1rem;
font-size: 1.75rem;
}
section {
min-height: 100vh;
position: relative;
}
.content {
position: absolute;
display: flex;
flex-direction: column;
left: 50%;
top: 60%;
transform: translate(-50%, -50%);
gap: 1rem;
background: $background;
color: $text;
max-width: 800px;
margin: auto;
padding: 2rem;
& p {
margin-bottom: 0;
}
&__header {
text-align: center;
margin-bottom: 2rem;
&:last-child {
margin-bottom: 0;
}
}
}
.bg img {
height: 100%;
}
.bg video {
height: 100%;
}
.legal {
max-width: 1000px;
margin: auto;
padding-top: 8rem;
padding-bottom: 4rem;
display: flex;
flex-direction: column;
gap: 4rem;
& h3 {
margin-bottom: 2rem;
}
}
|