33 lines
605 B
CSS
33 lines
605 B
CSS
@font-face{
|
|
font-family: inter;
|
|
src: url("https://file.brz9.dev/cdn/fonts/serv/Inter/Inter-Regular.woff");
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
}
|
|
|
|
@font-face{
|
|
font-family: inter;
|
|
src: url("https://file.brz9.dev/cdn/fonts/serv/Inter/Inter-Italic.woff");
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
}
|
|
|
|
@font-face{
|
|
font-family: inter;
|
|
src: url("https://file.brz9.dev/cdn/fonts/serv/Inter/Inter-Bold.woff");
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
}
|
|
|
|
body {
|
|
font-family: inter;
|
|
font-weight: 600;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4rem;
|
|
} |