-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (46 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
background-color: hsl(212, 45%, 89%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card {
background-color: hsl(0, 0%, 100%);
padding: 16px;
border-radius: 17px;
max-width: 325px;
max-height: 600px;
box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}
.card img {
border-radius: 10px;
width: 100%;
}
.text h1 {
color: hsl(218, 44%, 22%);
font-weight: 700;
font-size: 25px;
padding-bottom: 8px;
padding-top: 10px;
margin: 10px 0;
text-align: center;
}
.text p {
color: hsl(220, 15%, 55%);
text-align: center;
padding-bottom: 20px;
letter-spacing: 1px;
}
.attribution {
text-align: center;
padding: 6px;
font-size: medium;
}