@media (prefers-color-scheme: dark) {
	:root {
		--text-color: white !important;
		border-color: white !important;
		background-color: black !important;
		color: white;
		border-color: white;
	}
	h1, h2, h3, h4, h5, h6, p {
		color: white !important;
	}
	.post {
		background: #000 !important;
		border-bottom: lightgray solid 0.1px !important;
	}
	.question {
		background: rgba(255,255,255,0.2) !important;
	}
	a {
		color: lightblue !important;
	}
}

@media (prefers-color-scheme: light) {
	:root {
		--text-color: black !important;
		border-color: black !important;
		background-color: white !important;
		color: black;
		border-color: black;
	}
	h1, h2, h3, h4, h5, h6, p {
		color: black !important;
	}
	.post {
		background: #fff !important;
		border-bottom: lightgray solid 0.1px !important;
	}
	.question {
		background: rgba(0,0,0,0.1) !important;
	}
}

body {
	margin: 0;
	margin-top: 44px;
	font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
	background: rgb(0,25,53);
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 44px;
	line-height: 44px;
	font-size: 17px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background: rgb(0,25,53);
	z-index: 9999;
	border-bottom: 0.1px solid gray;
	box-sizing: border-box;
}

main {
	height: 100%;
	background: rgb(0,25,53);
	padding: 0;
	overflow-x: hidden;
}

img {
	width: 100%;
	height: auto;
}

.tmblr-full {
	margin: 0;
}

.timeline {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	background: rgb(0,25,53)
}

.conv {
	background: rgb(0,25,40);
	padding: 10px 10px 10px 5px;
	width: 40%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-self: center;
	max-width: 600px;
}

@media screen and (max-width: 400px) {
	.conv {
		width: 95%;
	}
}

.post {
	background: #fff;
	padding: 10px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	border-bottom: lightgray solid 0.1px;
}

.post:first-child {
	border-radius: 3px 3px 0 0;
}

.post:nth-child(n+2):nth-last-child(n+2) {
	border-radius: 0;
}

.post:last-child {
	border-radius: 0 0 3px 3px;
	border-bottom: 0 !important;
}

.post:only-child {
	border-radius: 3px;
}

.blog-name {
	margin: 0;
}

.blog-name, .asking-name {
	font-weight: bold;
	font-size: 10pt;
}

.content {

}

.question {
	margin: 0 2px;
	padding: 0 10px;
	background: rgba(0,0,0,0.1);
	border-radius: 3px;
	box-shadow: 3px 3px 5px rgba(100,100,100,0.2);
}