/* 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." */


@font-face {
font-family: "Roach";
src: url("/fonts/Roach.ttf") format("truetype");
} 

body {
cursor: url("https://s0d0m-su1c1de.neocities.org/pointers/vampire-lips.gif"), auto;
font-family: calibri, Arial, sans-serif;
background: #0d0d0d; 
color: #ccc;
font-size:13px;
display: flex;
min-height: 100vh;
letter-spacing:1px;
}
  
textarea {background:#222;color:#999;letter-spacing:1px;font-size:10px;} 

a:link,a:visited,a:active { color: #888;text-decoration: none; cursor: url("https://s0d0m-su1c1de.neocities.org/pointers/toxic.png");}
a:hover { color: #444; cursor: url("https://s0d0m-su1c1de.neocities.org/pointers/toxic.png") 15 15, pointer; }
  
button:hover {
  cursor: url("https://s0d0m-su1c1de.neocities.org/pointers/toxic.png") 15 15, pointer;
}  
  
::-webkit-scrollbar-thumb {
background-color: #000; 
border:1px solid #eee;
border-radius: 3px;}

::-webkit-scrollbar { 
width: 7px; 
height: 0px; 
background: transparent; }

.sidebar {
position: sticky;
top: 0;
height: 100vh;
width: 200px;
background: #8b0000;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;}

.sidebar h2 {
font-family: 'Roach', cursive;
font-size: 16px;
color: white;
margin-bottom: 10px;
text-shadow: 2px 2px 4px black;}

.sidebar a {
color: white;
text-decoration: none;
margin: 10px 0;
transition: color 0.3s;}

.sidebar a:hover {
color: #ff3333;}
    
.blinkie {margin-bottom:5px;}

.site-name {
text-shadow: 3px 3px 6px black;
text-align:center;}
    
.slogan {text-align:center;font-style:italic;color:#999;}

.content {
  flex: 1;
  padding: 50px 20px 20px 50px; 
  }

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  content: url(/dividers/barbedwire.gif);
  max-width: 100%;
  display: flex;
  align-content: center;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.imageflex { display: flex; }
.imageflexcontent { margin-left: 10px; margin-top: 0; }

.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}


h1, h2 {
  font-family: 'Roach', cursive;
  color: #D1001E;
}

h3, h4, h5 {
  font-family: Tahoma, Geneva, sans-serif;
  color: #D1001E;
}
footer {
  justify-content: center;
  align-items: center;}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
	background-color: #1c1c1c;
  border: 2px solid #660000;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #960000;
  background: url('https://s0d0m-su1c1de.neocities.org/dividers/blood.gif') repeat-x;
  }

#content {
  padding: 10px 5% 20px 5%;
  color: #e8E8E8
}

#centered { 
  display: grid;
  justify-content: center;
}

/*HEADER STYLE*/
#header {
  background-color: #1c1c1C;
  padding: 0 5%;
  text-align: center;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

#latestPostContent p{
    color: #e8E8E8;
}

#latestPostTitle h2{
    font-family: 'Roach', cursive;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
body {
flex-direction: column;}

.sidebar {
position: relative;
height: auto;
width: 90%;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;}
      
.sidebar h2 {
width: 90%;
text-align: center;
margin-bottom:5px;}

.content {
width: 90%;
padding: 15px;
padding-top:50px;}

.site-name {
font-size: 22px;
text-align: center;}

.small {
    max-width: 60%;
    height: auto;}
  }
}
