21 lines
417 B
CSS
21 lines
417 B
CSS
:root {
|
|
--bg-color: #302050;
|
|
--bg-highlight-color: #453075;
|
|
--outline: 4px #6040A0 solid;
|
|
--text-color: white;
|
|
--font: sans-serif;
|
|
color: var(--text-color);
|
|
background-color: var(--bg-color);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
gap: 16px;
|
|
height: 100dvh;
|
|
width: 100dvw;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
} |