-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
66 lines (59 loc) · 1.03 KB
/
main.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* {
margin:0;
padding: 0;
}
body {
background-color: hsl(212, 45%, 89%);
display: flex;
align-items: center;
margin: 0 auto;
font-family: Outfit;
}
.content-container {
background-color: hsl(0, 0%, 100%);
display: flex;
flex-direction: column;
align-items: center;
border-radius: 20px;
margin: 0 auto;
width: 335px;
height: 52%;
}
html, body {
height: 100%;
}
.img-container {
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 20px;
height: 60%;
width: 83%;
}
img {
border-radius: 15px;
width: 295px;
margin-top: 25px;
margin-right: 5px;
margin-left: -8px;
align-content: center;
}
h2 {
color: hsl(218, 44%, 22%);
text-align: center;
padding-top: 10px;
padding-right: 20px;
padding-left: 20px;
margin-top: 20px;
margin-bottom: 10px;
font-weight: 700;
}
p {
color: hsl(220, 15%, 55%);
font-size: 15px;
text-align: center;
font-weight: 400;
padding-bottom: 45px;
padding-right:45px;
padding-left: 45px;
}