blob: 967686eba209e7c454ba267ea2c080c24842d815 (
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
|
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: auto;
width: 70vw;
}
.content img {
width: 500px;
}
.cards {
display: flex;
flex-direction: row;
justify-content: center;
margin: auto;
padding: 10px;
gap: 10px;
}
.card {
display: flex;
flex-direction: column;
background-color: #de7e4b;
border-radius: 20px;
color: #ffffff;
padding: 10px;
max-width: 20vw;
}
html, body {
font-family: 'DM Sans', 'Arial', sans-serif;
}
|