/*
Theme Name: The Smallest Press Theme
Theme URI: https://example.com/the-smallest-press-theme
Author: Your Name
Author URI: https://example.com
Description: The smallest possible classic WordPress theme.
Version: 1.0
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-smallest-press-theme
*/

/* Basic Styles */
body {
    background-color: #181818;
    color: #e0e0e0;  
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #232325;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3, h4, h5, h6 {
    color: #fcfcfc;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #fcfcfc;
}

a, .post-date {
	color: #5dadec;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header a {
    color: #8e8e8e;
}

.current_page_item a {
color: #5dadec;
text-decoration: underline;

}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    font-size: 20px;
}

header {
    position: sticky;
    top: 0;
    background-color: #232325;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
	padding: 30px 0;
	text-align: center;
	background-color: #232325;

}
main {
    margin-left: 30px;
    margin-right: 30px;
	
}

.spacer {
	height: 50px;
	margin-bottom:50px;
	display:block;
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}
