-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
52 lines (45 loc) · 933 Bytes
/
styles.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&display=swap');
body {
background-color: hsl(212, 45%, 89%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
min-height: 100vh;
overflow: hidden;
width: 100%;
}
h4 {
font-size: 15px;
font-family: Outfit, serif;
font-weight: 700;
}
p {
font-size: 15px;
font-family: Outfit, serif;
font-weight: 400;
}
.card {
background-color: hsl(0, 0%, 100%);
box-shadow: 0 4px 8px 0 rbga(0,0,0,0.2);
transition: 0.3s;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 10px;
border-radius: 15px;
width: 375px;
}
img {
border-radius: 15px;
width: 375px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rbga(0,0,0,0.2);
}
.container {
padding: 2px 16px;
text-align: center;
}