: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;
}

a:link, a:visited, a:active { 
color:var(--accent3);
text-decoration:none;
}
a:hover {
color:var(--accent2);
}
b {color:var(--accent3);font-weight:bold;}
i {font-style:italic;color:var(--itallic);}
u {color:var(--u);text-decoration:none;}
mark {background:var(--mark); color:var(--marktext);}
textarea {font:10px calibri;letter-spacing:1px;}
h1, h2, h3, h4, h5 {
font-family: "Silkscreen", sans-serif;
font-weight: 500;
font-style: normal;
color: var(--header);
}
hr {color:var(--accent3);}

body {
  background: transparent;
  width:100%;
  margin:0;
  color:var(--bodytext);
  font-size:15px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.box {
  background:var(--box);
  border: 1px solid var(--accent1);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding:7px;
  margin-bottom:10px;
  overflow:auto;
}
.title {
  background:var(--accent1);
  color:var(--title);
  font-size:17px;
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing:1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding:5px;
  
}
.title img {
  float: right;
  height:20px;
}

.home {
  display:grid;
  width:750px;
  margin:auto;
}
.recent { 
width:175px;
height:175px;
margin:3px 3px 0px 3px;
object-fit:cover;
-webkit-filter: brightness(100%);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.recent:hover {
-webkit-filter: brightness(50%);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.stamps {
  margin:5px;
  text-align:center;
}
.stamps img {
  width:100px;
}
.blinkies {

  text-align:center;
}
.blinkies img {
  width:150px;
  margin:3px;
}
.about {
  display:grid;
  width: 800px;
  margin:auto;
  grid-template-areas:
    'basic basic basic basic pic'
    'int int int int int';
}
.basic {
  grid-area: basic;
  margin:10px;
  margin-top:0px;
}
.pic {
  grid-area: pic;
  background: url("https://i.postimg.cc/0jByX73n/picrew-me.png");
  background-size: cover;
  border: 1px solid var(--accent1);
  border-radius: 5px;
  width:600px;
  height:600px;
  margin:10px;
  margin-left:0px;
  margin-top:0px;

}
.int {
  grid-area: int;
  margin:10px;
  margin-top:0px;
}
.int span {
  font-size:12px;
}
.blorbo {
display:grid;
grid-template-columns: auto auto auto auto auto;
width:800px;
margin:auto;
gap: 5px;
}
.blorbo img{
width: 150px;
height:150px;
border: 1px solid var(--accent1);
border-radius:5px;
}
.container {
position: relative;
width: 100%;
}
.image {
opacity: 1;
display: block;
width: 100%;
height: auto;
transition: .5s ease;
backface-visibility: hidden;
}
.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
tag-align: center;
}
.container:hover .image {
filter:brightness(50%);
}
.container:hover .middle {
opacity: 1;
filter:brightness(100%);
}
.tag {
background-color: var(--accent2);
color: var(--body-font);
font-size: 15px;
padding: 5px 5px;
text-align:center;
}
.guestbook {
  width:800px; 
  height:550px;
  text-align:center;
}
.guestbook iframe {
  width:500px;
  height:700px;
  border:transparent;
}
.shrine {
  display: grid;
  grid-template-columns: auto auto;
  width:800px;
  margin:auto;
  gap:10px;
}
.shrine img {
  border: 1px solid var(--accent1);
  border-radius: 10px;
  width:375px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.shrine img:hover {
  filter: brightness(50%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.gallery {
  display:grid;
  grid-template-columns:auto auto auto auto;
  gap:10px;
  margin:auto;
  width:800px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}
.column {
  flex: 32%;
  max-width: 32%;
  padding: 0 4px;
}
.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.column img:hover {
  filter:brightness(50%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.post {
  margin-left:20px;
  margin-right:20px;
}
#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;
}
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}
#disqus_thread {
  margin-top: 1.6em;
}
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}
#header {
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing:1px;
  margin-left:0;
}
#header ul {
  list-style-type: none;
  margin: 0;
  margin-left:5px;
}
#header li {
  font-size: 20px;
  display: inline-block;
  margin:5px;
}
#header li a {
  color: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}
