-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (40 loc) · 794 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
}
body{
background-color: hsl(212, 45%, 89%);;
}
div{
/* border: 1px solid black; */
width: 320px;
position: absolute;
top: 50%;
background-color: hsl(0, 0%, 100%);
left: 50%;
transform: translate(-50%,-50%);
padding:15px;
border-radius: 10px;
}
div>img{
width: 100%;
border-radius: 10px ;
}
#p1{
font-weight: 700;
font-size: 20px;
margin: 25px 15px;
margin-bottom: 10px;
color: hsl(218, 44%, 22%);
text-align: center;
}
#p2{
text-align: center;
margin: 13px;
font-size: 16px;
color:hsl(220, 15%, 55%);
font-weight: 400;
}