-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
34 lines (34 loc) · 769 Bytes
/
index.css
File metadata and controls
34 lines (34 loc) · 769 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
@font-face {
font-family: 'Agustina Regular';
font-style: normal;
font-weight: normal;
src: local('Agustina Regular'), url('./assets/fonts/Agustina.woff') format('woff');
font-display: swap;
}
@font-face {
font-family: 'Montserrat';
src: local('Montserrat'), url('./assets/fonts/Montserrat-Regular.ttf') format('woff');
font-display: swap;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
html,
body {
scroll-behavior: smooth;
}
body {
margin: 0;
font: 19px / 23px Montserrat, "Montserrat", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Media Query */
@media (max-width: 1380px) {
html,
body {
font-size: 16px;
line-height: normal;
}
}