@charset "utf-8";
/* CSS Document */

body {
    font-family: Verdana, sans-serif;
    line-height: 1.6;
    background-color: #C6C6C6;
	background-image: url("images/nun5-flam.png"), url("images/white-paperboard.png");
	background-position: top center;
	background-repeat: no-repeat, repeat;
    color: #333;
    margin: 0;
    padding: 20px;
}

a:link, a:visited, a:hover, a:active {
  color: #532AD7;
}

.container {
    max-width: 600px;
    margin: 550px auto auto auto;
    padding: 30px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

h1 {
	color: #A96AEA;
}

.post {
    border-bottom: 1px solid #838383;
    padding: 20px 0;
}
.post:last-of-type {
    border-bottom: none;
}
.post-title {
    margin: 0 0 5px 0;
    font-size: 1.4rem;
}
.post-meta {
    font-size: 0.85rem;
    color: #838383;
    margin-bottom: 12px;
}
.category-tag {
    padding: 2px 6px;
    text-transform: uppercase;
    font-size: 0.75rem;
}
/* Markdown Link Formatting */
.post-body a {
    color: #532AD7;
    text-decoration: none;
    font-weight: 500;
}
.post-body a:hover {
    text-decoration: underline;
}
/* Standard Form Inputs */
input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    background: #3182ce;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background: #2b6cb0;
}
.error { color: #e53e3e; }

.footer {
	margin-top: auto;
	padding-top: 10px;
	font-size: 8pt;
	text-align: center;
}