
:root {
  --header:#fff;
  --background:url('https://cyboarnetic.neocities.org/img/background.jpg');
  --box:#1c0c50;
  --accent1:#ff5afc;
  --accent2:#6d3dfc;
  --accent3:#20d5e1;
  --bodytext:#fff;
  --navtext:10px;
  --title: 15px bold;
  --u: #daac5c;
  --itallic:#9ea3fd;
  --mark:#7b3ffd;
  --marktext:#fff;
}


body {
  background-image: url('https://cyboarnetic.neocities.org/img/background.jpg');
	background-position: top;
  font-size: 15px;
  font-family: "Saira Semi Condensed", sans-serif;
  margin: 0;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: solid var(--accent3);
  border-width: 2px 0 0 0;
}

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;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}
a {
  color:var(--accent3)
}
a:hover { 
  color:var(--accent1)
}

h1, h2, h3, h4, h5 {
  font-family: "Silkscreen", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
  height:100%;
	max-width: 700px;
	background-color: #1c0c50;
	border-radius:15px;
	border: 1px solid var(--accent1);
  color: var(--bodytext); 
  outline-color: #a9a9a9;
  outline-width: 4px;
  outline-offset: 0;
}

#content {
  padding: 10px 5% 20px 5%;
}


/*HEADER STYLE*/
#header {
  background-color: var(--accent1);
  padding: 0 3%;
  font-size:20px;
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing:1px;
  border: 1px solid var(--accent1);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#header ul {
  list-style-type: none;
  padding: 0.3em 0;
  margin: 0;
}
#header li {
  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;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  font-family: "Handjet", sans-serif;
  font-size:25px;
  text-align: center;
  margin-top: 1em;
}
#nextprev a {
  color:#fff;
}
#nextprev a:hover {
  color:var(--accent1);
}
/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}