-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (50 loc) · 976 Bytes
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Outfit", sans-serif;
font-weight: 400, 700;
}
#container {
display: flex;
justify-content: center;
align-items: center;
max-width: 1440px;
height: 100dvh;
background-color: hsl(212, 45%, 89%)
}
.content-wrapper {
border-radius: 20px;
background-color: hsl(0, 0%, 100%);
width: fit-content;
padding: 15px;
}
.content-wrapper figure {
text-align: center;
}
.content-wrapper figure > img {
border-radius: 15px;
}
.content-wrapper .text-wrapper {
width: 300px;
text-align: center;
margin: 1rem auto;
display: flex;
flex-direction: column;
gap: 1rem;
}
.text-wrapper > p {
font-size: 15px;
width: 250px;
margin: 0 auto;
}
.attribution {
padding: 10px;
display: flex;
justify-content: center;
font-size: 15px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}