-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (49 loc) · 1.11 KB
/
styles.css
File metadata and controls
56 lines (49 loc) · 1.11 KB
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
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&family=Poppins&family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Outfit", sans-serif;
background-color: hsl(212, 45%, 89%);
min-height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
font-size: 15px;
}
.container {
max-width: 350px;
margin: 0 auto;
background-color: hsl(0, 0%, 100%);
border-radius: 20px;
padding: 10px;
text-align: center;
box-shadow: 5px 5px 32px rgba(0, 0, 0, 8%);
margin-bottom: 20px;
}
.container img {
max-width: 100%;
border-radius: 20px;
padding: 6.5px;
}
.container h1 {
color: hsl(218, 44%, 22%);
padding: 10px 10px 0 10px;
font-size: 23px;
font-weight: 700;
}
.container p {
color: hsl(220, 15%, 55%);
padding: 15px 25px 30px 25px;
line-height: 1.5;
}
.attribution {
font-size: 12px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}