html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
	margin: 0;
}
body {
	margin: 0;
	font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #333;
	background-color: #e8ecef;
	background: linear-gradient(to bottom, #e8ecef, #f7f8fa);
	min-height: 100vh;
}
header {
	position: sticky;
	position: -webkit-sticky;
	margin: 0 auto 0;
	top: 0;
	z-index: 10;
	backdrop-filter: saturate(150%) blur(30px);
	-webkit-backdrop-filter: saturate(150%) blur(30px);
	background-color: rgba(245, 245, 247, 0.4);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
h1.header {
	font: normal 600 2.0rem "SF Pro Display", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a.headerLink {
	text-decoration: none;
}
@-moz-document url-prefix() {
	header {
		background-color: rgba(245, 245, 247, 0.9);
	}

}
footer {
	margin: 0 auto 0;
	text-align: center;
	padding: 3.0rem;
	padding-top: 0.0rem;
}
footer p {
	font-size: 0.9rem;
}
h1 {
	font-size: 4.209rem;
}
h2 {
	font-size: 3.157rem;
}
h3 {
	font-size: 2.369rem;
}
h4 {
	font-size: 1.777rem;
}
p {
	font-size: 1.333rem;
	margin-bottom: 1.0rem;
}
a, a:active, a:link, a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #666;
	transition: background 200ms ease-in-out;
}
section {
	margin: 0 auto 0;
}
section .text {
	text-align: center;
	padding-left: 3.0rem;
	padding-right: 3.0rem;
}
section .image {
	width: 100%;
	padding: 3.0rem;
}

.entry p {
	line-height: 1.3;
	letter-spacing: .011em;
}

.entry p a {
	color: #5654b0;
	transition: color 200ms ease-in-out;
}

.entry p a:hover {
	color: #9C8CD0;
}

.image-container {
	margin: 0 auto 0;
}
.width-restricted-wide {
	max-width: 1400px;
}
.width-restricted-narrow {
	max-width: 1100px;
}

.navbar {
	height: 3.5rem;
	margin: 0 auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 3.0rem;
	padding-right: 3.0rem;
}
.navbar .home {
	font-size: 1.3rem;
	font-weight: 600;
}
.navbar .home a {
	display: flex;
	text-decoration: none;
	cursor: pointer;
	align-items: center;
	height: 100%;
	color: #333;
}
.navbar .home .version-suffix {
	font-weight: 300;
}
.navbar img {
	margin-right: 0.5rem;
}

@media screen and (max-width:768px) {
	html {
		font-size: 12px;
	}

	.navbar {
		height: 4.0rem;
		padding-left: 1.0rem;
		padding-right: 1.0rem;
	}
	.navbar img {
		width: 3.0rem;
		height: auto;
	}
 
	.navbar li a {
		white-space: nowrap;
	}

}

@media screen and (max-width:640px) {
	html {
		font-size: 10px;
	}

	.navbar {
		height: 4.0rem;
		padding-left: 1.0rem;
		padding-right: 1.0rem;
	}
	.navbar img {
		width: 3.0rem;
		height: auto;
	}
	.navbar li a {
		white-space: nowrap;
	}

}

.navbar ul {
	list-style: none;
	display: flex;
}
.navbar .item a {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	margin: 0.7rem;
}
.navbar .item.bezeled a {
	color: white;
	font-weight: 500;
	background-color: #5654b0;
	background-position: 50%;
	font-size: 0.8rem;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	padding: 0.3rem;
	padding-left: 0.95rem;
	padding-right: 0.95rem;
	margin: 0.55rem;
	margin-right: 0;
	white-space: nowrap;
	border-radius: 1.0rem;
}
.navbar .item.bezeled a,.navbar .item.bezeled a:active,.navbar .item.bezeled a:link,.navbar .item.bezeled a:visited {
}
.navbar .item.bezeled a {
	position: relative;
	z-index: 1;
	width: 4.0rem;
	text-align: center;
	background-image: linear-gradient(27deg,#5654b0 21%,#E5C6EB);
}
.navbar .item.bezeled a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(31deg,#5654b0,#F4CDEF);
	opacity: 0;
	transition: opacity 0.3s;
	border-radius: 1.0rem;
	z-index: -1;
}
.navbar .item.bezeled a:hover::before {
	opacity: 1;
}
pre {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 2px solid #e5e5e5;
	display: block;
	margin-bottom: 20px;
	margin-top: 20px;
	overflow: auto;
	padding: 0.7em 1em;
}
code {
	font: 0.7em Menlo,Monaco,monospace;
	background-color: #f7f7f7;
}
pre::-webkit-scrollbar {
	height: 1ex;
}
pre::-webkit-scrollbar-thumb:horizontal {
	-webkit-border-radius: 12px;
	background-color: #ccc;
}
figcaption {
	text-align: center;
	font: normal 500 0.7em "SF Pro Display", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	margin-bottom: 5.0em;
	margin-top: 0.1em;
	width: 70%;
	margin: 0 auto 0;
	padding-top: 1.0rem;
	padding-bottom: 2.3rem;
}
.wrapper {
	max-width: 125ex;
	min-width: 82ex;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
}
@media screen and (max-width:920px) {
	.wrapper {
		max-width: 100%;
		min-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}
.entry {
	max-width: 82ex;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.0em;
	margin-bottom: 5.0em;
}
.entry h2 {
	font-size: 1.4rem;
	padding-top: 1.4rem;
	padding-bottom: 0.5rem;
}
.entry h3 {
	font-size: 1.1rem;
	padding-top: 1.2rem;
	padding-bottom: 0.4rem;
}
.entry img {
	max-width: 100%;
	padding-left: 3.0rem;
	padding-right: 3.0rem;
	padding-top: 4.0rem;
	display: block;
	margin: 0 auto;
}
@media screen and (max-width:920px) {
	.entry {
		min-width: 90%;
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}
.blogHeader {
	margin-top: 4.0em;
	text-align: center;
	font-size: 2.0em;
	text-transform: uppercase;
	color: rgb(80, 80, 80);
}
.blogHeader a:link {
	color: rgb(80, 80, 80);
	text-decoration: none;
}
.blogHeader a:visited {
	color: rgb(80, 80, 80);
}
.nav {
	text-align: center;
	height: 4.5em;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.5em;
}
.nav a {
	text-decoration: none;
}
.nav ul {
	padding: 0;
	margin-top: 1.0em;
}
.nav ul li {
	font: normal 300 0.85em "SF Pro Display", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	display: inline-block;
	padding: 0.0em 0.4em;
}
.header {
	text-align: left;
}
.info {
	font: normal 300 0.85em "SF Pro Display", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-align: left;
	margin-bottom: 2.5em;
	margin-top: 0.7em;
}
.time {
	display: none;
}
footer a:link {
	text-decoration: underline;
}
