-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (39 loc) · 1011 Bytes
/
style.css
File metadata and controls
40 lines (39 loc) · 1011 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
body{
margin: 0;
padding: 0;
font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
min-height: 100vh;
background-image: linear-gradient(125deg,#D83A56,#D83A56);
}
.container{
width: 100%;
position: absolute;
top:50%;
transform: translateY(-50%);
text-align: center;
color: #343434;
}
.container h1{
font-size: 160px;
margin: 0;
font-weight: 900;
letter-spacing: 20px;
background: url(images/white.png) center no-repeat;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.container a{
margin-top: 10px;
text-decoration: none;
background: #343434 ;
color: #FFFFFF;
padding: 12px 24px;
display: inline-block;
border-radius: 25px;
font-size: 14px;
text-transform: uppercase;
transition: 0.4s;
}
.container a:hover{
background: #7E7474;
}