:root {
    --accent: #5DA79B;
    --background: #222129;
    --color: #fff;
    --border-color: hsla(0, 0%, 100%, 0.1);
}

* {
    letter-spacing: -.03%;
    line-height: 1.35em;
}

html {
    box-sizing: border-box;
}

*,
:after,
:before {
    box-sizing: inherit;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga", "tnum", "zero", "ss01", "locl", "calt";
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    background-color: #222129;
    color: #fff;
    color: var(--color);
    font-family: verdana, helvetica;
    font-size: 1rem;
    font-variant-ligatures: contextual;
    letter-spacing: -.02em;
    line-height: 1.54;
    margin: 0;
    padding: 0;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    border-right: 1px solid hsla(0, 0%, 100%, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 864px;
    min-height: 100vh;
    padding: 0px 40px 40px 40px;
}

.container.full {
    max-width: 100%
}

.container.center {
    border: none;
    margin: 0 auto;
}

.header {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.header h1 a {
    color: var(--accent);
    text-decoration: none;
}

h2 {
    margin-bottom: 0px;
	margin-top : 40px;
}

main {
    flex: 1;
}

.content {
	margin-top: 0px;
    flex-direction: column;
}

.post-title {
    border-bottom: var(--border-color);
    color: var(--accent);
    position: relative;
	padding-bottom: 20px;
}

.post-title a {
    text-decoration: none;
}

.date {
	text-align: right;
}

.links {
	display: inline-block;
	padding-top: 15px;
}

.project-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.project-links a {
    display: inline-block;
}

footer {
	margin-top: 40px;
    flex-grow: 0;
    opacity: .5;
	flex-shrink: 0;
	text-align: center;
}

footer a {
    color: inherit;
}
