-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (60 loc) · 1.13 KB
/
style.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
58
59
60
61
62
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Outfit", sans-serif;
background-color: hsl(212, 45%, 89%);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
img {
width: 300px;
border-radius: 10px;
margin: 19px 19px 19px 19px;
}
.image {
display: flex;
justify-content: center;
}
.main {
background-color: hsl(0, 0%, 100%);
width: 340px;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.text{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1{
text-align: center;
font-size: 1.55rem;
font-weight: 700;
margin: 0 20px 0 20px;
color: hsl(218, 44%, 22%)
}
p{
text-align: center;
font-size: 15px;
font-weight: 400;
color: hsl(212, 45%, 89%);
margin: 20px 30px 30px 30px;
}