-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathstyle.css
More file actions
32 lines (32 loc) · 597 Bytes
/
style.css
File metadata and controls
32 lines (32 loc) · 597 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
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #e9e9e9c9;
}
.main {
height: 100vh;
display: flex;
align-items: center;
margin: 0 5rem 0 8rem;
}
h1 {
font-family: 'Abril Fatface', cursive;
font-size: 3.5rem;
}
p{
width: 71%;
font-size: 1.3rem;
color: #393939;
line-height: 29px;
}
button {
background: #292929;
color: #fff;
padding: 0.5rem 2rem;
margin-top: 1rem;
cursor: pointer;
}