html, body {
font-size: 13px; /* this also defines the overall widget size as all sizes are in rem */
font-family: Noto Sans;
height: 100%;
width: 100%;
padding: 0;
margin: 0;
background-color: white;
color: var(--pankow-text-color);
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
.shadow {
box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
#app {
height: 100%;
}