-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (42 loc) · 725 Bytes
/
style.css
File metadata and controls
54 lines (42 loc) · 725 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #F2F2F2;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.main-cont{
width: 320px;
height: 497px;
background-color: white;
border-radius: 20px;
overflow: hidden;
padding: 16px;
}
img{
max-width: 100%;
border-radius: 10px;
}
h1{
font-weight: 700;
font-size: 22px;
line-height: 28px;
text-align: center;
margin: 24px 0px 16px 0px;
font-family: 'Outfit', sans-serif;
}
p{
font-weight: 400;
font-size: 15px;
line-height: 19px;
text-align: center;
letter-spacing: 0.1875px;
color:grey;
margin: 0px 16px 34px 16px;
font-family: 'Outfit', sans-serif;
}