body {
    background: #ffffff;
    font-family: sans-serif;
}
html {
    box-sizing: border-box;
}
li {
    line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
    body {
	background: #111111;
	color: white;
    }
    .box {
	background: #222222 !important;
    }
    a {
	color: lightblue;
    }
    a:visited {
	color: pink;
    }
}
.emphatic {
    border-radius: 5px;
    border-top: 1rem solid red;
    border-bottom: 1rem solid red;
}
.box {
    background-color: white;
    border-radius: 5px;
    border-style: dotted;
}
.generous {
    line-height: 1.5;
}
.margin {
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.normal {
    font-style: normal;
}
.pad {
    padding: 2rem;
}
.breathe {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.top {
    margin-top: 0;
    top: -1rem;
}
