/* 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." */
/*Inconsolata import*/
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
/*Source Code Pro import*/
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
/*Roboto Mono import*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
/*IBM Plex Mono import*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
/*Google Sans Code import*/
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');
/*Anonymous Pro import*/
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*Courier Prime import*/
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*Kode Mono import*/
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap');

body {
  background-color: black;
  background-image: url('../images/bg_fingerlessGloves_Pink1.jpg');
  background-size: cover;
	background-position: top;
	background-repeat: repeat-x;
	background-attachment: fixed;
  font-size: 18px;
  font-family: "Anonymous Pro", 'Courier New', Courier, monospace;
}

p {
  line-height: 1.3em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

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;
}
.rightsidebanner {
  float: right;
  max-width: 40%;
  object-fit: contain;
  margin-left: 1em;
}

.halfcolumn {
  float: left;
  width: 48%;
  padding: 1%;
}

.threecolumn {
  float: left;
  width: 32%;
  padding: 0.5%;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}
.hidden {
  color:#000000;
  font-size: 10px;
}

@media only screen and (min-width: 600px) {
  .small {
    max-width: 40%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a {
  color: #ff33ff;
}
a:hover { 
  background-color: #311231;
  /* background: linear-gradient(to left, #33ff33, #000000, #33ff33) left/200% 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation:colorscroll 1.5s linear infinite; */
}

h1 {
  font-family: "Kode Mono", 'Courier New', Courier, monospace;
  color: #ff33ff;
  margin-top: 0.15em;
}

h2, h3, h4, h5 {
  font-family: "Kode Mono", 'Courier New', Courier, monospace;
  color: #ff33ff;
}

hr {
  border-width: 2px 0 0 0;
  border-style: dashed;
  border-color: #ff7eff; 
}

ul {
  line-height: 1.3em;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 4pt;
}

tr:nth-child(odd) {
  background-color: #414141;
}

td:nth-child(1) {
  text-align: center;
}

/*#CONTAINER is the rectangle that has contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 800px;
	background-color: black;
  color: #ffffff; 
  outline-color: #611261;
  outline-style: ridge;
  outline-width: 8px;
  outline-offset: 0;
  overflow: hidden;
}

#content {
  padding: 0px 5% 20px 5%;
  
}


/*HEADER STYLE*/
#header {
  background-color: black;
  padding: 0 5%;
}
#header ul {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin-bottom: 1em;
  margin-top: 1em;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 0.2em;
  margin-bottom: 0.2em;
  margin-top: 0.8em;
}
#header li a {
  color: #000000;
  background-color: #d8c1d6;
  border-width: 0.3em;
  border-style: outset;
  border-color: #9b8098;
  padding: 0.2em 0.5em 0.1em 0.5em;
  text-decoration: none;
  font-weight: bold;
}
#header li a:hover {
  background-color: #9b8098;
  border-color: #745c71;
}
#header li a:active {
  background-color: #9b8098;
  border-color: #745c71;
  color: #661566;
  
}

/*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;
}
.rainbow {
  background: linear-gradient(to left,red, rgb(0, 68, 255), green, yellow, orange, red) left/200% 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation:colorscroll 2.5s linear infinite;
}
@keyframes colorscroll {
  to {background-position: -200% 0}
}
.antirainbow {
  background: linear-gradient(to left,red, rgb(0, 68, 255), green, yellow, orange, red) left/200% 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation:colorscrollback 2.0s linear infinite;
}
@keyframes colorscrollback {
  to {background-position: 200% 0}
}

/*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%;
}