-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (50 loc) · 1.09 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
:root{
--white: hsl(0, 0%, 100%);
--light-gray: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: var(--light-gray);
font-size: 15px;
font-family: 'Outfit', sans-serif;
font-weight: 400;
height: 100%;
}
.wrapper {
display: grid;
grid-template-rows: auto auto auto;
align-items: center;
justify-content: center;
width: 20%;
height: 60%;
text-align: center;
background-color: var(--white);
padding: 1%;
margin-top: 10%;
border-radius: 5%;
}
#img {
width: 90%;
height: 80%;
border-radius: 5%;
margin: 1.5%;
}
h1,
p {
padding: 3px;
margin-bottom: 1%;
}
h1{
font-size:1.5rem;
font-weight: 700;
color: var(--dark-blue);
}
p{
font-size: 0.9rem;
color: var(--grayish-blue);
}