body {
	font-family: 'Noto Sans', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #212431;
	color: #fff;
	width: 100vw;
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
}
/* 
code {
	font-family: 'Noto Sans Mono', monospace;
	background-color: #171922;
} */

h1 {
	font-weight: 800;
	font-size: x-large;
}

body nav {
	padding: 0.75rem;
	justify-content: space-between;
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
	border-style: solid;
	border-color: #73e2a7;
	border-width: 0px;
	border-bottom-width: 1px;
}

body nav .logo {
	margin: 0;
	font-weight: 800;
	font-size: x-large;
}

body nav .nav-list {
	display: flex;
	align-items: center;
}

body nav .list a {
	color: white;
	margin-right: 2rem;
	text-decoration: none;
}

body main {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

body main a {
	color: #73e2a7;
	text-decoration: none;
}

body .header-text {
	text-align: center;
}

body .posts {
	display: grid;
	gap: 1rem;
}

body .post {
	color: #fff;
	border-style: solid;
	border-width: 1px;
	border-color: #73e2a7;
	padding: 1rem;
}

body .post p {
	margin: 0;
}

body .post .title {
	font-weight: 800;
	font-size: 1.5rem;
}

body footer {
	padding: 0.75rem;
	justify-content: space-between;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	border-style: solid;
	border-width: 0px;
	border-top-width: 1px;
	border-color:#73e2a7;
}

.green-text {
	color: #73e2a7;
}

body .pubdate {
	text-align: center;
}

body .post-head h1 {
	margin-bottom: 0;
}

body .post-head p {
	margin-top: 0;
}