:root {
  --maincolour: #43a8c9;
  --highlightcolour: #ec4c3e;
  --sidecolour: #99D19C;
}

body {
	background-color: #141f23;
	color: var(--maincolour);
		font-family: "Roboto Mono", monospace;
		font-optical-sizing: auto;
		font-weight: normal;
		font-style: normal;
		font-size: 12px;
		margin: 0;
		padding: 0;
		
}

a {
	color: var(--highlightcolour);
}

.sidebar {
    width: 250px;
    min-height: 100%;
    border-right: 1px solid var(--maincolour);
    padding: 2rem 2rem;
    position: absolute;
    overflow: auto;
  	background-position: bottom 50px right 0px;
    background-image: url('https://nosferatchew.neocities.org/index_files/Echo.png');
    background-size: 400px 237px;
		background-repeat: no-repeat;
}

.post-list a {
	display: block;
	text-decoration: none;
}

.post-list a:before {
	content: "\00b7";
	margin-left: -12px;
	width: 14px;
	display: inline-block;
}

.title {
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 4px;
	font-variant: small-caps;
}

.subtitle {
	margin-bottom: 24px;
	font-style: italic;
}

.profile img {
	border: 1px solid var(--highlightcolour);
	display: inline;
	float: left;
	margin-bottom: 12px;
	margin-right: 6px;
}

.profile .profile-desc {
	display: inline;
}

.profile {
	border: 1px solid var(--maincolour);
	padding: 12px;
	border-top: 8px solid var(--maincolour);
	min-height: 60px;
}


.menu a {
	border: 1px solid var(--highlightcolour);
	text-decoration: none;
	padding: 4px;
	display: inline-block;
	margin-bottom: 6px;
}

.menu a:hover {
	font-weight: bold;
}

.sidebar a:hover {
	text-decoration: underline;
}

iframe {
	height: 100%;
	width: 100%;
	border: none;
}

.main {
    position: absolute;
    height: 100vh;
    width: calc(100% - 316px);
    margin-left: 316px;
    box-sizing: border-box;
}

.page {
  min-height: 100vh;
	padding: 24px;
	padding-right: 40vw;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080808; 
}
 
::-webkit-scrollbar-thumb {
  background: #080808; 
}

::-webkit-scrollbar-thumb:hover {
  background: #080808; 
}

h1 {
  color: var(--highlightcolour);
	font-variant: small-caps;
	border-bottom: 1px dashed;
}

h2 {
  color: var(--sidecolour);
}