-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (38 loc) · 771 Bytes
/
style.css
File metadata and controls
38 lines (38 loc) · 771 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
color: hsl(220, 15%, 55%);
background: hsl(212, 45%, 89%);
font-size: 0.9375rem;
font-family: "Outfit", sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
gap: 2rem;
}
main {
max-width: 320px;
background: hsl(0, 0%, 100%);
box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
margin: 1rem;
padding: 1rem;
border-radius: 1.2rem;
}
main img {
width: 100%;
border-radius: 0.6rem;
}
main .text-content {
margin: 1.2rem 1rem;
}
.text-content h1 {
color: hsl(218, 44%, 22%);
margin-bottom: 1rem;
}