@font-face {
    font-family: Inter;
    src: url(/static/fonts/Inter-Regular.woff2);
}

body {
    line-height: 1.6;
    font-size: 18px;
    font-family: "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji";
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

p {
	font-size: 16px;
}

h1 {
	font-size: 30px;
	line-height: 34px;
}

h2 {
	font-size: 20px;
	line-height: 25px;
}

h3 {
	font-size: 16px;
	line-height: 27px;
}

hr {
	height: 1px;
	border: none;
	width: 100%;
	margin: 0px;
}

@media (prefers-color-scheme: dark) {
    body {
	    background-color: #222;
	    color: #aaa;
    }

    a[href] {
    	color: #5C8EC9;
    }

    a[href]:hover {
    	color: #6DA5E8;
    }

    hr {
	    background-color: #d8d8d8;
    }
}