2025-12-14 19:31:52 +01:00
|
|
|
/* Global CSS options */
|
2025-12-14 21:28:50 +01:00
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-family: "Truculenta", sans-serif;
|
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-variation-settings: "wdth" 100;
|
|
|
|
|
font-size: 16pt;
|
2025-12-15 18:54:19 +01:00
|
|
|
margin: 0;
|
|
|
|
|
min-height: 100svh;
|
2025-12-15 19:16:32 +01:00
|
|
|
height: 100svh;
|
2025-12-15 18:54:19 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2025-12-15 19:16:32 +01:00
|
|
|
|
|
|
|
|
background-color: #1e2030;
|
|
|
|
|
color: #cad3f5;
|
2025-12-15 18:54:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#main {
|
2025-12-15 19:16:32 +01:00
|
|
|
max-width: 40rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2025-12-15 18:54:19 +01:00
|
|
|
margin: 0.25rem;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
padding: 0.25rem;
|
2025-12-15 19:16:32 +01:00
|
|
|
border-left: solid 2px #c6a0f6;
|
|
|
|
|
border-right: solid 2px #c6a0f6;
|
2025-12-14 21:28:50 +01:00
|
|
|
}
|