:root {
	--bg-color: #fdd3f0;
	--text-color: #1C1C1C;
	--hover-bg-color: #B8336A;
	--hover-text-color: white;
	--a-visited-color: #808080;
	--bg-codeblock-color: #1A1A1A;
	--codeblock-color: white;
}

@font-face {
	font-family: stalker1;
	src: url("fonts/stalker/stalker1.ttf")  format('truetype');
}

body {
	margin: 40px auto;
	max-width: 650px;
	line-height: 1.6;
	font-size: 18px;
	color: var(--text-color);
	background-color: var(--bg-color);
	padding: 0 8px;
	line-break: word;
	font-family: stalker1;
}

ul {
	list-style-type: circle;
}

a, a:active {
	color: var(--hover-bg-color);
	text-decoration: none;
}

a:visited {
	color: var(--a-visited-color);
	text-decoration: none;
}

a:hover {
	color: var(--hover-text-color);
	background-color: var(--hover-bg-color);
	text-decoration: none;
	border-radius: 6px;
}

img {
	margin: 16px 32px;
	max-width: auto;
}

figcaption {
	font-size: 14px;
	text-align: center;
}

.title {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
}

.blogname {
	margin: auto 0 auto 8px;
}

.headline {
	margin: 8px 8px 8px 24px;
	text-align: right;
}

.module-list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 32px;
}

.module {
	font-size: 16px;
	padding: 0 8px;
}

.row {
	display: flex;
	flex-direction: row;
}

pre {
	padding: 10px;
	background-color: var(--bg-codeblock-color);
	color: var(--codeblock-color);
	overflow: scroll;
}

@media(min-width: 640px) {
    .mobile-show {
        display: none;
    }

    .blogname {
        white-space: nowrap;
    }
}

@media(max-width: 640px) {
    .title {
        display: flex;
        flex-direction: column;
    }

    .module-list {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .mobile-hide {
        display: none;
    }

    .row {
        flex-direction: column;
    }
}
