17 lines
285 B
CSS
17 lines
285 B
CSS
|
html {
|
||
|
font-family: monospace;
|
||
|
font-weight: bold;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
height: 95vh;
|
||
|
max-width: 100%;
|
||
|
background-color: #F1FAEE;
|
||
|
color: #2E1F27;
|
||
|
padding: 1.5rem;
|
||
|
margin: 0;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
overflow: hidden;
|
||
|
}
|