-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (47 loc) · 951 Bytes
/
style.css
File metadata and controls
55 lines (47 loc) · 951 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
44
45
46
47
48
49
50
51
52
53
54
55
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root {
--white: hsl(0, 0%, 100%);
--slate300: hsl(212, 45%, 89%);
--slate500: hsl(216, 15%, 48%);
--slate900: hsl(218, 44%, 22%);
}
* {
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: var(--slate300);
}
.container {
width: 90%;
max-width: 320px;
background-color: var(--white);
border-radius: 20px;
height: 500px;
}
.text-contaienr {
margin: 20px;
text-align: center;
}
.text-contaienr .title {
color: var(--slate900);
font-size: 20px;
font-weight: 700;
margin-bottom: 15px;
}
.text-contaienr .sub {
color: var(--slate500);
font-size: 15px;
font-weight: 400;
}
.container img {
display: block;
margin: 20px auto;
border-radius: 20px;
width: 90%;
}