-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (53 loc) · 1015 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
*{
box-sizing: border-box;
margin: 0%;
padding: 0%;
}
body{
background-color: hsl(212, 45%, 89%);
height: 100vh;
display: flex;
}
.container{
background-color: hsl(0, 0%, 100%);
width: 300px;
height: 450px;
border-radius: 8%;
margin: auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.pics{
box-sizing: border-box;
margin-top: 4%;
margin-left: 5%;
width: 270px;
height: 270px;
border-radius: 8%;
}
h2{
font-family: "Outfit", sans-serif;
font-optical-sizing: auto;
font-weight: 400, 700;
font-style: normal;
color:hsl(218, 44%, 22%);
font-size: 20px;
margin: 4%;
text-align: center;
}
p{
font-family: "Outfit", sans-serif;
font-optical-sizing: auto;
font-weight: 400, 700;
font-style: normal;
font-size: 15px;
color:hsl(212, 45%, 89%);
margin: 4%;
text-align: center;
}
@media screen and (min-width:375px) and (max-width:1440px){
.container{
margin: 30% 12%;
}
}