article {
	font-size: 1.15rem;
	line-height: 1.5;

	/* h1,h2,h3,h4,h5 {
		font-weight: 700;
	} */
	h1,
	h2,
	h3 {
		line-height: 1.1;
		font-family: 'Instrument Serif';
	}

	h1 {
		font-size: 3.25rem;
		margin: 1rem 0;
	}

	h2 {
		font-size: 2.6rem;
		margin-top: 3rem;
	}

	h3 {
		font-size: 2rem;
		margin-top: 3rem;
	}

	img {
		background: white;
		width: 100%;
		display: block;
		border-radius: 8px;
	}

	figure {
		margin: 32px 0;
		figcaption {
			margin: 8px 0;
			color: #999;
			font-size: 14px;
			text-align: center;
		}
	}

	h4 {
		font-size: 1.44rem;
		margin-top: 2rem;
	}

	p {
		margin: 1.5rem 0;
	}

	code {
		background: var(--color-surface);
		padding: 2px 4px;
		border-radius: 4px;
		font-size: 1.05rem;
		color: var(--color-code);
	}

	pre {
		border-radius: 8px;

		code {
			background: transparent;
			padding: 0;
			border-radius: 0;
		}

		code.hljs {
			border-radius: 8px;
			background: var(--color-surface);
		}
	}
	ul, ol {
		padding: 0 24px;
		margin: .75rem 0;
		li {
			margin: 0.5rem 0;
		}
	}
	ul {
		list-style: disc;
	}
	a {
		color: #a9d8f7;
		&:hover {
			text-decoration: underline;
		}
	}
}