/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
	background-color: #080808;
	color: #c0609f;
		font-family: "Roboto Mono", monospace;
		font-weight: normal;
		font-style: normal;
		font-size: 12px;
		margin: 0;
		padding: 0;
		background-image: url('contorno.jpg');
		background-repeat: repeat-x;
}

a {
	color: #c0609f;
}

.sidebar {
    width: 250px;
    min-height: 100%;
    border-right: 1px solid #c0609f;
    padding: 2rem 2rem;
    position: absolute;
    overflow: auto;
}

.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 #c0609f;
	display: inline;
	float: left;
	margin-right: 6px;
}

.profile .profile-desc {
	display: inline;
}

.profile {
	border: 1px solid #c0609f;
	padding: 12px;
	border-top: 8px solid #c0609f;
	min-height: 60px;
}


.menu a {
	border: 1px solid #c0609f;
	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 {
	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 {
	font-variant: small-caps;
	border-bottom: 1px dashed;
}