-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 847 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (44 loc) · 847 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
* {
box-sizing: border-box;
}
body {
background-color: rgb(123, 135, 157);
display: grid;
height: 100vh;
max-height: 100vh;
place-items: center;
overflow: hidden;
}
.main {
background-color: hsl(0, 0%, 100%);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 1rem;
border-radius: 1.5rem;
width: min-content;
}
h1 {
color: hsl(218, 44%, 22%);
/* Weights: 400, 700; */
font-family: 'Outfit', sans-serif;
}
p {
color: hsl(212, 45%, 89%);
font-size: 15px;
font-family: out;
font-family: 'Outfit', sans-serif;
}
img {
width: 300px;
height: auto;
border-radius: .8rem;
}
/* @media screen and (max-width: 400px) {
.main {
width: 90%;
height: 100%;
}
} */