21 lines
375 B
CSS
21 lines
375 B
CSS
/*color vars*/
|
|
:root {
|
|
--main_bg: #1e1e1e;
|
|
--main_text_color: #d3d3d3;
|
|
--main_color: #3399cc;
|
|
--hover_main_color: #3399ccb0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
background-color: var(--main_bg);
|
|
color: var(--main_text_color);
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
} |