-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
49 lines (45 loc) · 944 Bytes
/
styles.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
* {
margin: 0;
padding: 0;
}
@font-face {
font-family: "hk_groteskmedium";
src: url("hkgrotesk-medium-webfont.woff2") format("woff2"),
url("hkgrotesk-medium-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
}
.containter {
display: flex;
justify-content: center;
align-items: center;
padding: 30px;
background: #252837;
min-height: 100vh;
}
.neumorphism-1 {
height: 10%;
width: 100%;
border-radius: 25px;
background: linear-gradient(145deg, #212432, #282b3b);
box-shadow: 20px 20px 60px #1f222f, -20px -20px 60px #2b2e3f;
}
.neumorphism-1 h1 {
font-family: "EB Garamond", sans-serif;
font-weight: 800;
font-style: normal;
font-size: 600%;
color: #ffffff;
text-align: center;
position: relative;
top: 50%;
}
h2 {
font-family: "hk_groteskmedium";
font-size: 200;
color: #ffffff;
text-align: center;
position: relative;
top: 50%;
margin-bottom: 12px;
}