-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
49 lines (41 loc) · 902 Bytes
/
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
body {
font-family: "Outfit", sans-serif;
font-weight: 400;
background-color: hsl(212, 45%, 89%);
display: flex;
align-items: center;
justify-content: center;
height: 100vh; /* Ensure the body takes up the full height of the viewport */
margin: 0; /* Remove default margin */
flex-direction: column;
}
img {
border-radius: 15px;
max-width: 350px;
place-items: center;
}
h1 {
font-size: 19pt;
font-weight: 700;
}
p {
font-size: 20pt;
color: hsl(220, 15%, 55%);
}
.card {
text-align: center;
background-color: white;
transition: 0.3s;
border-radius: 20px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
padding: 15px;
max-width: 350px;
margin-top: auto;
}
.attribution {
font-size: 11px;
text-align: center;
display: block;
margin-top: 50px;
}
.attribution a { color: hsl(228, 45%, 44%); }