Files

21 lines
417 B
CSS
Raw Permalink Normal View History

2026-05-26 22:50:15 -05:00
:root {
--bg-color: #302050;
--bg-highlight-color: #453075;
--outline: 4px #6040A0 solid;
2026-05-26 22:50:15 -05:00
--text-color: white;
--font: sans-serif;
2026-05-26 22:50:15 -05:00
color: var(--text-color);
background-color: var(--bg-color);
}
body {
margin: 0;
padding: 0;
display: flex;
gap: 16px;
2026-05-26 22:50:15 -05:00
height: 100dvh;
width: 100dvw;
align-items: center;
justify-content: center;
flex-direction: column;
}