Files
comp126/assignments/a3/css/clean.css
2024-11-11 23:03:20 -05:00

38 lines
329 B
CSS

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
}
:root {
font-family: 'Inter', sans-serif;
}
@supports (font-variation-settings: normal) {
:root {
font-family: 'Inter var', sans-serif;
}
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-weight: normal;
font-size: 1em;
}
a {
color: inherit;
text-decoration: none;
}