:root {
	--background-color: #111;
	--border-color: #333;
	--font-color: #e2e2e2;
}

body {
	font-family: Athelas, Palatino, Georgia, serif;
	line-height: 1.5;
	color: var(--font-color);
	background-color: var(--background-color);
	font-size: 16px;
}

.container {
	width: 45em;
}

.header {
	margin: 60px 0;
	padding-top: 16px;
	padding-bottom: 16px;
}

.blog-title {
	margin: 64px 0;
	width: 90%;
	float: none;
	font-size: 96px;
	line-height: 1.0125;
}

.header .profile-image-wrapper {
	position: absolute;
	top: 0;
	right: 0;
}

.header .description {
	line-height: 1.25;
	font-size: 20px;
}

.header .description::after {
	content: ' ';
	width: 8.3333333333%;
	border-top: 2px solid;
	border-color: currentColor;
	position: absolute;
	height: 2em;
	bottom: -2.5em;
	left: 0;
}

.text .content {
	font-size: 24px;
	margin-bottom: 1em;
	width: 100%;
}

.entry .date {
	color: #aaa;
	position: absolute;
	left: -4em;
	top: 5px;
}

.entry .content:hover {
	transform: scale(1) !important;
}

.day-header {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	padding: 1em 0 0 0;
	background-color: var(--background-color);
	z-index: 20;
}

.authenticated .day-header {
	top: 32px;
}

.day-header .date {
	margin-bottom: 0.5em;
	font-size: 40px;
	line-height: 1.25;
	font-weight: bold;
	border-bottom: 2px solid currentColor;
	padding-bottom: 1px;
	display: inline-block;
}

.footer {
	padding: 1.5em 0;
}

.footer .flex {
	padding-top: 1em;
	border-top: 2px solid;
	border-color: currentColor;
}

a.login-button {
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	padding: 2em;
	z-index: 25;
}

a.login-button:hover {
	font-weight: 800;
}

nav.dates {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	padding: 4em 2em 2em 2em;
	box-sizing: border-box;
	overflow-y: auto;
	z-index: 25;
}

nav.dates li.active a {
	transition: 0.5s all;
	background-color: var(--font-color);
	color: var(--background-color);
}

nav.dates a {
	text-decoration: none;
	line-height: 1;
	margin: 0.5em 0;
	padding: 0.1em 0.3em;
}

nav.dates a:hover {
	font-weight: bolder;
	text-decoration: underline;
	color: var(--font-color);
}

@media only screen and (max-width: 1100px) {
	nav.dates {
		display: none;
	}
}

.hide-desktop {
	visibility: hidden;
}

@media only screen and (max-width: 52em) {
	.container {
		width: 90%;
	}
	.video {
		min-width: unset;
	}
	.video:hover {
		max-width: 100%;
	}
	.day-header {
		padding: 0;
	}
	.day-header .date {
		margin-bottom: 0.3em;
		font-size: 2em;
	}
	.blog-title {
		font-size: 50px;
		margin: 0 0 1em 0;
		max-width: 65%;
		word-break: break-word;
		-webkit-hyphens: auto;
		hyphens: auto;
	}
	.header {
		margin: 1em 0;
	}
	.entry .date {
		text-align: left;
		position: relative;
		left: auto;
		top: auto;
	}
	.text .content {
		margin: 0;
		font-size: 20px;
	}
	.hide-mobile {
		visibility: hidden;
	}
	.hide-desktop {
		visibility: visible;
	}
}
