-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (47 loc) · 1 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
body{
background: hsl(212, 45%, 89%);
margin: 0 auto;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: auto;
}
.container{
background: hsl(0, 0%, 100%);
padding: 1em;
border-radius: 20px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
text-align: center;
width: 280px;
}
.container img {
border-radius: 12px;
width: 280px;
height: 280px;
}
.container h1{
font-family: "Outfit",sans-serif;
color: hsl(218, 44%, 22%);
font-weight: 700;
font-size: 21px;
}
.container p {
color: hsl(220, 15%, 55%);
font-family: "Outfit",sans-serif;
font-weight: 400;
font-size: 15px;
margin:0 15px 25px;
}
.attribution{
font-family: "Outfit",sans-serif;
color: hsl(218, 44%, 22%);
font-weight: 500;
font-size: 15px;
margin-top: 100px;
}