2024-02-29 17:47:16 +03:00
|
|
|
:root {
|
|
|
|
--black: #0a0908ff;
|
|
|
|
--chocolate-cosmos: #49111cff;
|
|
|
|
--white-smoke: #f2f4f3ff;
|
|
|
|
--beaver: #a9927dff;
|
|
|
|
--walnut-brown: #5e503fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
2024-03-01 12:31:16 +03:00
|
|
|
font-family: "Montserrat", sans-serif;
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
box-sizing: border-box;
|
2024-02-29 17:47:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2024-03-01 12:31:16 +03:00
|
|
|
body {
|
2024-02-29 17:47:16 +03:00
|
|
|
position: relative;
|
|
|
|
background-color: var(--black);
|
|
|
|
color: var(--white-smoke);
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2024-03-01 12:37:49 +03:00
|
|
|
padding: 16px;
|
2024-02-29 17:47:16 +03:00
|
|
|
}
|
|
|
|
|
2024-03-01 12:31:16 +03:00
|
|
|
#__nuxt {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 800px;
|
|
|
|
margin-inline: auto;
|
|
|
|
overflow-y: auto;
|
2024-02-29 17:47:16 +03:00
|
|
|
}
|