:root {
	--nav-bg-color: #fdfdfd;
	--nav-border-color: #82aedb;

	--footer-bg-color: #F2E7D5;
	--footer-border-color: #c2b7a5;

	--wrapper-max-width: 1100px;
	--wrapper-gutters: 30px;

	--grid-gutter: 1px;
}




html {
	font-size: 16px;
	overflow-y: scroll;
	scrollbar-gutter: stable;
}

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure {
	margin: 0;
	padding: 0;
}

/**
 * Basic styling
 */
body {
	font: 400 20px/1.5 -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif;
	color: #111111;
	background-color: #fdfdfd;
	font-feature-settings: "kern" 1;
	font-kerning: normal;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	overflow-wrap: break-word;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure {
	margin-bottom: 15px;
}

hr {
	margin-top: 30px;
	margin-bottom: 30px;
}

/**
 * `main` element
 */
main {
	display: block;
	/* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
	max-width: 100%;
	vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
	display: block;
}

figcaption {
	font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
	margin-left: 30px;
}

li > ul, li > ol {
	margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
}

article h2 {
	padding-top: 2em;
}

/**
 * Links
 */
a {
	color: #00895A;
}

a:visited {
	color: #D24317;
}

a:hover {
	color: #D93526;
	text-decoration: underline;
}

.social-media-list a:hover, .pagination a:hover {
	text-decoration: none;
}

.social-media-list a:hover .username, .pagination a:hover .username {
	text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
	box-shadow: -5px 5px 7px 0 #747474;
	color: #3c3c3c;
	border: 1px solid #747474;
	border-left: 10px solid #747474;
	padding-left: 15px;
	font-size: 1.5rem;
	font-style: italic;
	margin-left: auto;
	margin-right: auto;
	padding: 1em 1em 1em 1.5em;
	width: 80%;
}

blockquote > :last-child {
	margin-bottom: 0;
}

blockquote i, blockquote em {
	font-style: normal;
}

/**
 * Code formatting
 */
pre, code {
	font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
	background-color: #efeeee;
/*
	font-size: 0.9375em;
	border: 1px solid #e8e8e8;
	border-radius: 3px;
	background-color: #eeeeff;
 */
}

code {
	color: #d43939;
	padding: 1px 5px;
}

pre > code {
	color: #f8f8f2;
}

pre {
	padding: 8px 12px;
	overflow-x: auto;
}

pre > code {
	border: 0;
	padding-right: 0;
	padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
	max-width: calc( var( --wrapper-max-width ) - var( --wrapper-gutters ) );
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

@media screen and (min-width: 800px) {
	body {
		font-size: 24px;
	}
	.wrapper {
		max-width: calc( var( --wrapper-max-width ) - ( var( --wrapper-gutters ) * 2 ) );
		padding-right: 30px;
		padding-left: 30px;
	}

	.site-header .wrapper, .site-footer .wrapper {
		max-width: 100%;
	}
}

/**
 * Clearfix
 */
.wrapper:after {
	content: "";
	display: table;
	clear: both;
}

/**
 * Icons
 */
.orange {
	color: #f66a0a;
}

.grey {
	color: #828282;
}

.svg-icon {
	width: 1.25em;
	height: 1.25em;
	display: inline-block;
	fill: currentColor;
	vertical-align: text-bottom;
}

/**
 * Tables
 */
table {
	margin-bottom: 30px;
	width: 100%;
	text-align: left;
	color: #3f3f3f;
	border-collapse: collapse;
	border: 1px solid #333333;
}

table tr:nth-child(even) {
	background-color: #e9e9e9;
}

table th, table td {
	padding: 10px 15px;
}

table th {
	background-color: #F2E7D5;
	border: 1px solid #333333;
}

table td {
	border: 1px solid #333333;
}

@media screen and (max-width: 800px) {
	table {
		display: block;
		overflow-x: auto;
	}
}

/**
 * Site header
 */
.site-header {
	background: #B7D9FC;
	color: #fff;
	border-bottom: 5px solid #82aedb;
	min-height: 55.95px;
	line-height: 54px;
	position: relative;
}

.site-header a {
	color: #3a3a3a;
	text-decoration: none;
}

.site-title {
	font-size: 1.625rem;
	font-weight: 500;
	letter-spacing: -1px;
	margin-bottom: 0;
	float: left;
}

@media screen and (max-width: 600px) {
	.site-title {
		padding-right: 45px;
	}
}

.site-title, .site-title:visited {
	color: #424242;
}

.site-nav {
	position: absolute;
	top: 9px;
	right: 15px;
	background-color: var(--nav-bg-color);
	border: 1px solid var(--nav-border-color);
	border-radius: 5px;
	text-align: right;
}

.site-nav .nav-trigger {
	display: none;
}

.site-nav .menu-icon {
	float: right;
	width: 36px;
	height: 26px;
	line-height: 0;
	padding-top: 10px;
	text-align: center;
}

.site-nav .menu-icon > svg path {
	fill: #424242;
}

.site-nav label[for=nav-trigger] {
	display: block;
	float: right;
	width: 36px;
	height: 36px;
	z-index: 2;
	cursor: pointer;
}

.site-nav input ~ .trigger {
	clear: both;
	display: none;
}

.site-nav input:checked ~ .trigger {
	display: block;
	padding-bottom: 5px;
}

.site-nav .page-link {
/*	color: #111111; */
	line-height: 1.5;
	display: block;
	padding: 5px 10px;
	margin-left: 20px;
}

.site-nav .page-link:not(:last-child) {
	margin-right: 0;
}

@media screen and (min-width: 600px) {
	.site-nav {
		position: static;
		float: right;
		border: none;
		background-color: inherit;
	}

	.site-nav label[for=nav-trigger] {
		display: none;
	}

	.site-nav .menu-icon {
		display: none;
	}

	.site-nav input ~ .trigger {
		display: block;
	}

	.site-nav .page-link {
		display: inline;
		padding: 0;
		margin-left: auto;
	}

	.site-nav .page-link:not(:last-child) {
		margin-right: 20px;
	}
}

/**
 * Site footer
 */
.site-footer {
	background: var( --footer-bg-color );
	border-top: 5px solid var( --footer-border-color );
	padding: 30px 0;
}

.footer-heading {
	font-size: 1.125rem;
	margin-bottom: 15px;
}

.feed-subscribe .svg-icon {
	padding: 5px 5px 2px 0;
}

.contact-list, .social-media-list, .pagination {
	list-style: none;
	margin-left: 0;
}

.footer-col-wrapper, .social-links {
	font-size: 1rem;
}

.footer-col {
	margin-bottom: 15px;
}

.footer-col-1, .footer-col-2 {
	width: calc(50% - (30px / 2));
}

.footer-col-3 {
	width: calc(100% - (30px / 2));
}

@media screen and (min-width: 800px) {
	.footer-col-1 {
		width: calc(35% - (30px / 2));
	}

	.footer-col-2 {
		width: calc(20% - (30px / 2));
	}

	.footer-col-3 {
		width: calc(45% - (30px / 2));
	}
}

@media screen and (min-width: 600px) {
	.footer-col-wrapper {
		display: flex;
	}

	.footer-col {
		width: calc(100% - (30px / 2));
		padding: 0 15px;
	}

	.footer-col:first-child {
		padding-right: 15px;
		padding-left: 0;
	}

	.footer-col:last-child {
		padding-right: 0;
		padding-left: 15px;
	}
}

/**
 * Page content
 */
.page-content {
	background: #f7f7f7;
	padding: 30px 0;
	flex: 1 0 auto;
}

.page-heading {
	font-size: 2rem;
}

.post-list-heading {
	font-size: 1.75rem;
}

.post-list {
	margin-left: 0;
	list-style: none;
}

.post-list > li {
	margin-bottom: 30px;
}

.post-meta {
	font-size: 20px;
	color: #3c3c3c;
}

.post-link {
	display: block;
	font-size: 1.5rem;
}

/**
 * Posts
 */
.post-header {
	margin-bottom: 30px;
}

.post-title, .post-content h1 {
	font-size: 2.625rem;
	letter-spacing: -1px;
	line-height: 1.15;
}

@media screen and (min-width: 800px) {
	.post-title, .post-content h1 {
		font-size: 2.625rem;
	}
}

.post-content {
	margin-bottom: 30px;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
	margin-top: 30px;
}

.post-content h2 {
	font-size: 1.75rem;
}

@media screen and (min-width: 800px) {
	.post-content h2 {
		font-size: 2rem;
	}

	.post-content p {
		margin-bottom: 35px;
	}
}

.post-content h3 {
	font-size: 1.375rem;
}

@media screen and (min-width: 800px) {
	.post-content h3 {
		font-size: 1.625rem;
	}
}

.post-content h4 {
	font-size: 1.25rem;
}

.post-content h5 {
	font-size: 1.125rem;
}

.post-content h6 {
	font-size: 1.0625rem;
}

.post img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #333;
	margin-top: 1em;
	margin-bottom: 1em;
}

.social-media-list, .pagination {
	display: table;
	margin: 0 auto;
}

.social-media-list li, .pagination li {
	float: left;
	margin: 5px 10px 5px 0;
}

.social-media-list li:last-of-type, .pagination li:last-of-type {
	margin-right: 0;
}

.social-media-list li a, .pagination li a {
	display: block;
	padding: 10px 12px;
	border: 1px solid #e8e8e8;
}

.social-media-list li a:hover, .pagination li a:hover {
	border-color: #dbdbdb;
}

/**
 * Pagination navbar
 */
.pagination {
	margin-bottom: 30px;
}

.pagination li a, .pagination li div {
	min-width: 41px;
	text-align: center;
	box-sizing: border-box;
}

.pagination li div {
	display: block;
	padding: 7.5px;
	border: 1px solid transparent;
}

.pagination li div.pager-edge {
	color: #e8e8e8;
	border: 1px dashed;
}

/**
 * Grid helpers
 */
@media screen and (min-width: 800px) {
	.one-half {
		width: calc(50% - (30px / 2));
	}
}

.site-footer {
	padding-bottom: 120px;
	margin-top: auto;
}

.sub-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
}

.sub-footer:before {
	position: absolute;
	display: table;
	margin: -60px auto;
	top: 1px;
	left: 0;
	right: 0;
	content: "";
	border: 30px solid;
	cursor: pointer;
	border-color: transparent transparent #828282;
}

#skin-switch-container {
	display: none;
	margin-left: -4px;
	padding: 15px 0;
	text-align: center;
	font-size: 0.8rem;
}

#skin-switch-container select {
	margin: 0 2px;
	padding: 5px 2px;
	text-align: center;
	font-size: 0.8rem;
	border-radius: 5px;
}

#skin-switch-container select:focus-visible {
	outline: none;
}

.sub-footer, .sub-footer select {
	color: #3f3f3f;
	background: #f0f0f0;
}

.sub-footer::before, .sub-footer select::before {
	border-color: transparent transparent #f0f0f0;
}








/* *** Grid *** */
.container-fluid {
	margin: 0 auto;
	width: 100%;
}

.container-middle {
	margin: 0 auto;
	width: 96%;
	max-width: 1200px;
}

.row {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-left: calc(var(--grid-gutter) / -2);
    margin-right: calc(var(--grid-gutter) / -2);
}

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

.col {
    flex: 1;
}

.col, [class*=" col-"], [class^='col-'] {
    margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
}

.col-1 {
    flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
    max-width: calc((100% / (12/1)) - var(--grid-gutter));
}

.col-2 {
    flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
    max-width: calc((100% / (12/2)) - var(--grid-gutter));
}

.col-3 {
    flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
    max-width: calc((100% / (12/3)) - var(--grid-gutter));
}

.col-4 {
    flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
    max-width: calc((100% / (12/4)) - var(--grid-gutter));
}

.col-5 {
    flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
    max-width: calc((100% / (12/5)) - var(--grid-gutter));
}

.col-6 {
    flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
    max-width: calc((100% / (12/6)) - var(--grid-gutter));
}

.col-7 {
    flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
    max-width: calc((100% / (12/7)) - var(--grid-gutter));
}

.col-8 {
    flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
    max-width: calc((100% / (12/8)) - var(--grid-gutter));
}

.col-9 {
    flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
    max-width: calc((100% / (12/9)) - var(--grid-gutter));
}

.col-10 {
    flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
    max-width: calc((100% / (12/10)) - var(--grid-gutter));
}

.col-11 {
    flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
    max-width: calc((100% / (12/11)) - var(--grid-gutter));
}

.col-12 {
    flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
    max-width: calc((100% / (12/12)) - var(--grid-gutter));
}

@media screen and (max-width: 699px) {
    .container {
        max-width: 96%;
    }

    .col, [class*="col-"], [class^='col-'] {
        flex: 0 1 100%;
        max-width: 100%;
    }
}







#photo-of-me {
	border: 1px solid #000;
	border-radius: 5%;
}

.site-icons a svg {
	color: #000;
	text-decoration: none;
	padding-right: 0.75em;
	width: 2em;
	height: 2em;
}

.site-icons a svg:hover {
	color: #1343A0;
	text-decoration: none;
    animation: 0.3s ease 0.1s iconshift;
    animation-fill-mode: forwards;
    filter: drop-shadow( 0.3em 0.5em 0.2em rgb(0 0 0 / 0.4));
}
@keyframes iconshift {
    from { }
    to {
        transform: scale(1.25);
    }
}


.tool-in-out .output {
	width: 100%;
}
@media screen and ( min-width: 900px ) {
	.tool-in-out .output {
		width: 70%;
	}
}

@view-transition {
	navigation : auto;
}
