Files
otivm/src/index.css
2026-04-25 15:18:38 +00:00

27 lines
333 B
CSS

*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
body {
font-family: 'Georgia', serif;
background: #f5f0e8;
color: #2a1f0e;
min-height: 100vh;
}
button {
font-family: inherit;
cursor: pointer;
}
a {
color: inherit;
}