Files
hexstudios-co/styles/main.css
2026-08-13 11:48:06 -05:00

17 lines
301 B
CSS

:root {
--background-color: #1a1a1a;
--foreground-color: #f5f5f5;
}
* {
font-family: 'Times New Roman', Times, serif;
color: var(--foreground-color);
}
body {
background-color: var(--background-color);
width: 80%;
margin: auto;
padding-top: 4%;
font-size: 12pt;
}