-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (39 loc) · 779 Bytes
/
style.css
File metadata and controls
43 lines (39 loc) · 779 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
body{
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 5%;
gap: 70px;
background-color: hsl(212, 45%, 89%);
}
.container{
position: relative;
width: 38vh;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 10px;
border-radius: 10px;
}
.text-contain{
text-align: center;
padding: 5px;
font-family: 'Outfit', sans-serif;
}
.text-contain h2{
font-weight: 700;
}
.text-contain p{
font-size: 15px;
font-weight:100;
color: hsl(220, 15%, 55%);
}
img{
width: 100%;
border-radius: 3%;
}