-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (48 loc) · 839 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--white: #ffffff;
--light-gray: #d6e2f0;
--grayish-blue: #7b879d;
--ark-blue: #1f3251;
}
html{
font-size: 15px;
font-family: 'Outfit';
}
body{
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--light-gray);
}
.container-card{
width: 300px;
padding: 20px;
border-radius: 15px;
background-color:var(--white);
}
img{
width: 100%;
border-radius: 15px;
}
.title{
margin: 10px auto 0;
width: 90%;
font-size: 1.2rem;
font-weight: 700;
text-align: center;
}
.subtitle{
margin: 10px auto 10px;
width: 90%;
font-size: 1rem;
font-weight: 500;
text-align: center;
color: var(--grayish-blue);
}