/*------------------ CSS RESET ------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, fo,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, n,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, un, web,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}up

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*--------------- END CSS RESET ---------------*/



/*------------------ BASICS -------------------*/

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/opensans-variable.ttf") format("truetype");
}

body {
  background-color: #101010;
  font-family: 'Open Sans', sans-serif;
  font-size: .8em;
}

p {
  line-height: 1.5em;
}

p:not(last-child) {
  margin-bottom: 1em;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

a {
  text-decoration: none;
  color: #4492dd;
  transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
}

a:hover {
  color: #333;
}

hr {
  max-width: 100%;
  border: none;
  height: 1px;
  background-color: #a2a2a2;
  margin: 1.5em 0 1.5em 0;
}

h1 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: .9em;
}

h2 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: .3em;
  padding-bottom: .3em;
  border-bottom: 1px dotted #777777;
}

h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: .5em;
}

.fa, .fas, .far {
  display: inline-block;
  width: 15px;
  text-align: center;
  margin-right: 10px;
}

/*---------------- END BASICS -----------------*/



/*---------------- STRUCTURE ------------------*/

#site {
  display: table;
  table-layout: fixed;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#centering {
  display: table-cell;
  vertical-align: middle;
}

#container {
  max-width: 1200px;
  margin: 0 auto;
}

#header {
  display: flex;
  position: relative;
  min-height: 90px;
  max-width: 100%;
  margin: 1em 1em 0 1em;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: #fff;
  background-image: url(/layout/assets/macbg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 35%;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

#quote {
  display: inline-block;
  margin: .5em;
  padding: .5em;
  background-color: #101010;
  font-size: 1.5em;
  line-height: 1em;
  letter-spacing: 2px;
  color: #FFF;
  text-shadow: -2px -2px 0 #170e13, 0 -2px 0 #170e13, 2px -2px 0 #170e13, 2px 0 0 #170e13, 2px 2px 0 #170e13, 0 2px 0 #170e13, -2px 2px 0 #170e13, -2px 0 0 #170e13;
}

#socials {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 0 1em 0 1em;
  padding: 0 .3em 0 .3em;
  border: 1px solid #fff;
  border-top: 0;
  gap: .1em;
  flex-wrap: wrap;
  max-width: 100%;
  min-height: 30px;
  background-color: #fff;
}

.screenreader {
  position: absolute !important;
  height: 1px; width: 1px; 
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px,0px 0px, 0px 0px);
}

#content {
  display: flex;
  flex-wrap: wrap;
  padding: .5em;
}

#leftcolumn {
  flex: 1;
  margin: .5em;
  padding: .5em;
  border: 1px solid #fff;
  background-color: #fff;
}

#centercolumn {
  flex: 5.2;
  min-height: 100%;
  margin: .5em;
  padding: 1em;
  border: 1px solid #fff;
  background-color: #fff;
}

#centercontent {
  position: relative;
  width: 100%;
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

#rightcolumn {
  flex: 2.4;
  min-height: 100%;
}

#indexbottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -.5em 0 -.5em;
}

.rightbox {
  margin: .5em;
  padding: .5em;
  border: 1px solid #fff;
  background-color: #fff;
}

.rightbox:last-child {
  border-bottom: 3px solid #fff;
}

#leftcolumn ul {
  margin: 0 0 .9em 0;
  padding: 0;
}

#leftcolumn ul.links:last-child {
  margin-bottom: 0;
}

#leftcolumn ul.links > li a {
  text-align: left;
  letter-spacing: .9px;
  line-height: 1.5em;
  transition: all .1s ease-in;
}

#leftcolumn ul.links > li a:hover{
  letter-spacing: 1.2px;
}

#leftcolumn .columntitle:first-child,
#rightcolumn .columntitle:first-child {
    margin: 0 0 .5em 0;
}

#leftcolumn .columntitle {
  text-align: left;
}

#rightcolumn .columntitle {
  text-align: right;
}

#footer {
  display: block;
  max-width: 100%;
  margin: 0 1em 1em 1em;
  padding: .2em;
  border: 1px solid #fff;
  text-align: center;
  font-size: .9em;
  line-height: 1.3em;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}

#leftcolumn .columntitle,
#rightcolumn .columntitle {
  position: relative; 
  max-width: 100%;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px dotted #a2a2a2;
  padding-bottom: .4em;
  margin-bottom: .4em;
  -webkit-background-clip: text;
  background-image: url('/layout/assets/galaxybg.jpg');
  background-size: contain;
  -webkit-text-fill-color: transparent;
}
  
/*-------------- END STRUCTURE ----------------*/



/*------------ BEGIN FRONT PAGE --------------*/

#frontpage {
  display: flex;
  gap: .5em;
  flex-wrap: wrap;
}

#webringlist {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5em;
}

.columns #latest, #webrings {
  border: 0;
  padding: 0;
}

#latest, #webrings {
  flex: .8;
}

#latest h2, #webrings h2 {
  margin-bottom: 1em;
}

.work {
  display: block;
  margin: .5em 0 .5em 0;
  overflow: auto;
}
  
.updateslist {
  display: block;
  height: 100px;
  overflow: auto;
}

.spacer {
  display: block;
  width: 200px;
  height: 0;
  opacity: 0;
}

#frontpage img {
   border-radius: .5em;
   height: 120px;
}

#info {
  flex: 1;
  margin: 0 .5em 0 .5em;
}

#info p:first-child {
  margin-top: 0;
}

#newsbox, #webringsbox {
  flex: 1;
  margin: .5em;
}


#nullring {
  width: 100%;
  text-align: center;
  padding: 3px;
}

#newsframe {
  min-width: 100%;
  max-width: 100%;
  min-height: 430px;
  overflow-x: hidden;
}

#news {
  overflow: auto;
  max-height: 200px;
  margin-bottom: 3em;
}

.buttonslist {
  width: 100%;
  text-align: center;
}

#newsheader {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #a2a2a2;
  margin-bottom: 1em;
}

#newsheader h1 {
  margin-bottom: .8em;
}

/*-------------- END FRONT PAGE ----------------*/



/*------------ BEGIN SOCIAL ICONS --------------*/

a.socialicon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    opacity: 1;
    transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
}

a.socialicon:hover {
    opacity: 0.5;
}


#youtube {
    background: url("/layout/assets/icons/youtube.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#characterhub {
    background: url("/layout/assets/icons/characterhub.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#spacehey {
    background: url("/layout/assets/icons/spacehey.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#voxyz {
    background: url("/layout/assets/icons/voxyz.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#mfc {
    background: url("/layout/assets/icons/mfc.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#kofi {
    background: url("/layout/assets/icons/kofi.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#neocities {
    background: url("/layout/assets/icons/neocities.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#artfight {
    background: url("/layout/assets/icons/artfight.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#nanowrimo {
    background: url("/layout/assets/icons/nano.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#tumblr {
    background: url("/layout/assets/icons/tumblr.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#mastodon {
    background: url("/layout/assets/icons/mastodon.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#twitter {
    background: url("/layout/assets/icons/twitter.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#pillowfort {
    background: url("/layout/assets/icons/pf.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#nicovideo {
    background: url("/layout/assets/icons/nicovideo.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#bilibili {
    background: url("/layout/assets/icons/bilibili.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#toyhouse {
    background: url("/layout/assets/icons/toyhouse.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#twitch {
    background: url("/layout/assets/icons/twitch.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#artfol {
    background: url("/layout/assets/icons/artfol.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#inkblot {
    background: url("/layout/assets/icons/inkblot.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

#cohost {
    background: url("/layout/assets/icons/cohost.png") no-repeat;
    background-position: center;
    background-size: 80%;
}

/*--------------- END SOCIAL ICONS --------------*/



/*---------------- BEGIN WEBMASTER --------------*/

#about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  padding: .5em;
}

#avatar {
  display: inline-block;
  border-radius: 100%;
  background: url("https://mystsaphyr.me/images/misc/avatar.jpg") no-repeat center;
  background-size: 100%;
  width: 50px;
  height: 50px;
  margin: 0 .3em 0 .3em;
}

#namestuff {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 .3em 0 .3em;
}

#name {
  margin-bottom: 0;
}

#namephonetics {
  display: inline-block;
  font-size: .8em;
  color: #A2A2A2;
}

#infoline {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: .85em;
  line-height: 1.5em;
  margin: 0;
  padding-left: 3px;
}

#status {
  width: 100%;
  height: 25px;
  text-align: center;
}

#statuscafe {
  height: 38px;
}

#statuscafe-username {
  margin-bottom: 5px;
  font-size: .9em;
}

#statuscafe-content {
  font-size: .9em;
  line-height: 1.5em;
}

#statuscafe-username a {
  letter-spacing: .9px;
}

#statuscafe-username a:hover{
  letter-spacing: 1.2px;
}

/*--------------- END WEBMASTER ----------------*/



/*------------ BEGIN FONT AWESOME ---------------*/

.fa, .fas, .far {
  display: inline-block;
  width: 15px;
  text-align: center;
  margin-right: 10px;
}

.fa-rss:before {
  color: #a2a2a2;
} 

.fa-rss {
  font-size: 1.5em;
  opacity: 0.5;
  transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
}

.fa-rss:hover {
  opacity: 1;
  cursor: pointer;
}

/*-------------- END FONT AWESOME --------------*/



/*-------------- BEGIN IMAGE GRIDS -------------*/

.buttons, .adoptables {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .5em;
}

.userboxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 1.2em;
}

.buttons img:hover, .userboxes img:hover, .adoptables img:hover {
  opacity: 0.5;
}

.thumbgrid {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em;
}

.imagelink {
  display: block;
  flex: 0 0 15%;
}

#fpworkpic {
  display: block;
  width: 75px;
  height: auto;
  float: left;
  padding-right: .7em;
}

#fpworkdesc {
  display: block;
}

.logolink {
  display: block;
  flex: 0 0 20%;
  margin: 5px;
}

.logolink img {
  object-fit: contain;
}

.imageblank {
  display: block;
  flex: 0 0 15%;
  margin: 5px;
}

.thumbgrid div:after {
  content: "";
  flex: auto;
}

img.thumb {
  width: 100%;
  border: 1px solid #170e13;
  background-color: #a2a2a2;
  transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
}

img.thumb:hover {
  opacity: 0.7;
}

/*------------- END IMAGE GRIDS ----------------*/



.comic {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}



/*--------- BEGIN COLUMNS BOXES & ROWS ---------*/

.columns {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5em;
}

#frontcolumns {
  gap: 2.5em;
}

.column {
  flex-grow: 1;
  padding: 10px;
  text-align: left;
  border: 1px solid #333;
  border-radius: .3em;
}

.rows {
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1em;
}

.box {
  flex: 1;
  border: 1px solid #333333;
  border-radius: .3em;
  text-align: center;
  padding: .8em;
}

.box ul {
  margin-bottom: 0 !important;
}

.desc {
  margin: 10px;
}

a.bigbutton {
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    border: 1px solid #170e13;
    border-radius: 1em;
    text-transform: uppercase;
    text-align: center;
    font-size: 1em;
    font-weight: 500;
    padding: .5em;
}

a.bigbutton:hover {
    border: 1px solid #4492dd;
}

.ultitle {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 5px;
}

#centercontent ul {
  margin: 0 0 2.2em 0;
}

#centercontent .column ul {
  margin: 0 0 1em 0;
}

#centercontent .column ul:last-child,
#centercontent .column ul li:last-child{
  margin: 0;
}

#centercontent  ul li:before {
  content:'✦';
  color: #a2a2a2;
  margin: 0 0.8em 0 0;
}

#centercontent ul li {
  line-height: 1.25em;
  padding-left: 1.6em;
  text-indent: -1.6em;
  margin-bottom: .4em; 
}

.column > ul li:before {
  content:'✦';
  color: #a2a2a2;
  margin-right: .8em;
}

.desc > ul li:before {
  content:'✦';
  color: #a2a2a2;
  margin-right: .8em;
}

.price {
  font-size: 1.3em;
}

/*--------- END COLUMNS BOXES & ROWS -----------*/



/*-------------- BEGIN TABLES ------------------*/

.table {
    max-width: 100%;
}

.headerrow {
    width: 100%;
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 2px solid #A5A5A5;
    display: flex;
    justify-content: space-between;
}

.headerleft {
    padding: 3px 3px 3px 10px;
    width: 100%;
    text-align: left;
}

.headercenter {
    padding: 3px 3px 3px 10px;
    width: 100%;
    text-align: center;
}

.headerright {
    padding: 3px 10px 3px 3px;
    width: 100%;
    text-align: right;
}

.regularrow {
    width: 100%;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.itemleft {
    padding: 5px 5px 5px 10px;
    line-height: 1.5em;
    width: 100%;
    text-align: left;
}

.itemcenter {
    padding: 5px 5px 5px 10px;
    line-height: 1.5em;
    width: 100%;
    text-align: center;
}

.itemright {
    padding: 5px 10px 5px 5px;
    line-height: 1.5em;
    width: 100%;
    text-align: right;
}

span.highlight {
    background-color: #b8ddff;
}

/*---------------- END TABLES ------------------*/



/*---------------- BEGIN TABS ------------------*/

.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel, .tabset .buttontabpanel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6),
.tabset > input:nth-child(13):checked ~ .tab-panels > .tab-panel:nth-child(7),
.tabset > input:nth-child(15):checked ~ .tab-panels > .tab-panel:nth-child(8){
  display: block;
}

.tabset > input:first-child:checked ~ .tab-panels > .buttontabpanel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .buttontabpanel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .buttontabpanel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .buttontabpanel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .buttontabpanel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .buttontabpanel:nth-child(6),
.tabset > input:nth-child(13):checked ~ .tab-panels > .buttontabpanel:nth-child(7),
.tabset > input:nth-child(15):checked ~ .tab-panels > .buttontabpanel:nth-child(8) 
{
  display: block;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: .5em;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: #06c;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

#buttontabs {
  text-align: center;
  border: 0;
}

.buttontabpanel {
  border: 0;
  margin: 10px 0px 0px 0px;
  padding: 0;
  text-align: center;
  height: 43px;
}
  

/*------------------ END TABS ------------------*/


.menutoggle {
  display: none;
  flex-basis: 100%;
  margin: .5em;
  padding: .5em;
  border: 1px solid #fff;
  background-color: #fff;
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 640px)
  and (-webkit-min-device-pixel-ratio: 2) {
    
    .comic img {
      width: 100%;
    }
    
    #webrings {
      padding-top: 20px;
      margin-top: 20px;
      border-top: 1px solid #a2a2a2;
    }
    
    .menutoggle {
      display: block;
    }
    
    #leftcolumn {
      flex-basis: 100%;
      max-height: 0;
      padding: 0 10px 0 10px;
      border-top: 5px solid #FFF;
      border-bottom: 5px solid #FFF;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
    }
    
    #leftcolumn::first-child {
      margin-top: 10px;
    }
    
    #centercontent {
      height: 100%;
      text-align: center;
    }
    
    .buttons {
      justify-content: space-between;
    }
    
    .buttons {
      text-align: center;
      gap: .5em;
    }
    
    .userboxes {
      justify-content: center;
    }
    
    .columns #latest, #webrings {
      flex-basis: 100%;
    }

    #frontpage {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    #frontpage img {
      margin: auto;
    }
    
    #info {
      min-width: 100%;
      margin-top: 20px;
    }

}


/* onionring.js is made up of four files - onionring-widget.js, onionring-index.js, onionring-variables.js and onionring.css (this one!)
// it's licensed under the cooperative non-violent license (CNPL) v4+ (https://thufie.lain.haus/NPL.html)
// it was originally made by joey + mord of allium (è’œ) house, last updated 2020-10-24 */

/* === ONIONRING.CSS === */
/* this file affects the style of the widget. remember to replace all instances of #webringid with whatever value you have for ringID in the onionring-widget.js file. make sure it still has the # at the front, though! probably easiest to use find+replace to do it */

@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stint+Ultra+Expanded&display=swap');
@font-face {
  font-family: 'Distro';
  src: url('https://vtubers.neocities.org/distro.ttf') format('truetype');
}

#vtubers-on-neocities {
  font-family: 'Distro', monospace;
  color: #fff;
  margin: 0 auto;
  padding: 3px;
}

#vtubers-on-neocities a {
  outline: none;
  text-decoration: none;
  background: none;
  padding: 2px 1px 0;
}

#vtubers-on-neocities a:link {
  background: none;
  color: rgb(240, 113, 66);
}

#vtubers-on-neocities a:visited {
  background: none;
  color: rgb(240, 113, 66);
}

#vtubers-on-neocities a:focus {
  border-bottom: 1px solid;
  background: none;
  color: #333;
}

#vtubers-on-neocities a:hover {
  border-bottom: 1px solid;
  background: none;
  color: #eee;
}

#vtubers-on-neocities a:active {
  background: none;
  color: #eee;
}

#vtubers-on-neocities table {
  background:
  radial-gradient(
    ellipse at 22% 31%,
    rgb(65, 53, 98),
    transparent 55%),
  radial-gradient(
    ellipse at 97% 87%,
    rgb(81, 82, 132),
    transparent 55%),
  radial-gradient(
    ellipse at 61% 12%,
    rgb(209, 61, 58),
    transparent 45%),
  radial-gradient(
    ellipse at 53% 57%,
    rgb(180, 65, 113),
    transparent 55%),
  radial-gradient(
    ellipse at 17% 79%,
    rgb(219, 187, 77),
    transparent 55%),
  rgb(0, 0, 0);
  margin: 0 auto;
  margin: 0 auto;
}

#vtubers-on-neocities tr:nth-child(2) {
  background-color:rgba(0, 0, 0, 0.5);
}

#vtubers-on-neocities table {
  border: 1px solid #000000;
}

#vtubers-on-neocities tr td {
  padding: 5px; /* creates some space between the links and text inside the widget */
  border-collapse: separate;
}

#vtubers-on-neocities .webring-prev {
  text-align: right;
}

#vtubers-on-neocities .webring-info {
   margin: 0;
   padding: 0;
}

#vtubers-on-neocities .webring-next {
  text-align:left;
}

#vtubers-on-neocities .webring-links {
  font-size:small;
}

#vtubers-on-neocities-title-pre
{
  padding-left: 5px;
  max-width: 100%;
  text-align: left;
}

#vtubers-on-neocities-title-post
{
  padding-right: 5px;
  max-width: 100%;
  text-align: right;
  padding-bottom: 5px;
  margin-top: -13px;
}

#vtubers-on-neocities-title-wrapper {
 max-width: 100%;
 display: flex;
 justify-content: center;
 gap: .7em;
 padding-left: 5px;
}

#vtubers-on-neocities-title-elem-1 {
  margin-top: -13px;
}

#vtubers-on-neocities-title-elem-2 {
  letter-spacing: -.1em;
  margin-top: -13px;
}

#vtubers-on-neocities-title-elem-3 {
  letter-spacing: -.1em;
  margin-top: -13px;
}

#vtubers-on-neocities-title-elem-4 {
  letter-spacing: -.3em;
  margin-top: -13px;
}

#vtubers-on-neocities-info {
  padding: 2px;
}


