2026-05-18 17:33:45 +03:00

30 lines
390 B
CSS

* {
box-sizing: border-box;
}
:root {
--font-family: "Inter", sans-serif;
--second-family: "Segoe UI", sans-serif;
--third-family: "Noto Sans", sans-serif;
}
body {
margin: 0;
font-family:
-apple-system,
Segoe UI,
Roboto,
Arial,
sans-serif;
color: #2d3748;
}
html {
font-size: 16px;
}
@media (max-width: 1920px) {
html {
font-size: .83vw;
}
}