2026-08-06 17:44:49 +03:00

25 lines
358 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;
}
}