-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (50 loc) · 936 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (50 loc) · 936 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
56
57
58
59
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html,
body {
margin: 0;
height: 100vh;
font-family: "MaisonNeue-Medium";
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osz-font-smoothing: grayscale;
}
@font-face {
font-family: "MaisonNeue-Medium";
src: url("./assets/MaisonNeue-Medium.otf");
}
h1 {
font-size: 64px;
color: #848484;
}
.container {
display: flex;
justify-content: center;
align-items: center;
min-height: 85vh;
}
.footer {
display: flex;
justify-content: center;
align-items: center;
padding-top: 15px;
padding-bottom: 15px;
height: 15vh;
}
.footerImage {
height: 75px;
filter: drop-shadow(1.5px 1.5px 1.5px#757575);
opacity: 95%;
}
.footerItem {
margin-left: 20px;
margin-right: 20px;
}
@media screen and (max-width: 500px) {
h1 {
font-size: 50px;
}
}