@font-face {
  font-family: 'helvetipixelmedium';
  src: url('/assets/fonts/helvetipixel-webfont.woff2') format('woff2'),
       url('/assets/fonts/helvetipixel-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-smooth: never;
  -webkit-font-smoothing: none;
}

@font-face {
  font-family: 'timesnewpixelmedium';
  src: url('/assets/fonts/timesnewpixel-webfont.woff2') format('woff2'),
       url('/assets/fonts/timesnewpixel-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-smooth: never;
  -webkit-font-smoothing: none;

}

@font-face {
  font-family: 'martianmono';
  src: url('/assets/fonts/MartianMono-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-smooth: never;
  -webkit-font-smoothing: none;
}

body {
	background-color: #8ea9ff;
	font-size: 16px;
	color:#3a468b;
}

header {
	margin: auto;
	text-align: center;
	margin-bottom: 1rem;
	font-family: 'helvetipixelmedium';
}

main {
	margin: auto;
	max-width: 1050px;
	font-family: 'helvetipixelmedium';
	max-height: 80vh;
	overflow: auto;
}

img {
	width: 100%;
}
.post {
	margin: auto;
	max-width: 1050px;
	border-radius: 3rem;
	background-color: #e7e1d8;
	padding: 2rem;
	margin-bottom: 1rem;
}
details {
	max-width: 1050px;
	margin: auto;
}

.post h3, h1 {
	font-family: 'martianmono';
	margin-bottom: 0;
	margin-top: 0;
}

.post p {
	color: #2f2c5a;
}

a {
	color: #fff3e4;
}

a:hover {
	color: #8ea9ff;
	background-color: #e9f581;
	transition-duration: 0.3s;
}

.post a {
	color: #1f79e0;
	transition-duration: 0.3s;
}

.post a:hover {
	transition-duration: 0.3s;
	color: #fff;
	background-color:#1f79e0;
}

.post-header {
	display: flex;
	justify-content: space-between;
}

table {
	margin: auto;
	border-collapse: collapse;
	margin-bottom: 1rem
}
tr {
	margin: 0
}

.empty-td {
	border: 0
}

table td:first-child {
	border-left: 0
}

table td:last-child {
	border-right: 0;
	border-top: 0;
}
table tr:first-child td {
	border-top: 0
}
table tr:last-child td {
	border-bottom: 0
}

td {
	border: 1px solid;
	margin: 0;
}

.vertical-img {
	max-width: 500px;
}

@media only screen and (max-width: 600px) {
	.vertical-img {
		max-width: 100%;
	}
}