@import url('https://fonts.cdnfonts.com/css/sf-buttacup-lettering-shaded');
@font-face {
     font-family: 'F5.6';
     src: url(https://humantooth.neocities.org/fonts/F5.6-Regular.woff) format('woff');
     font-weight: normal;
     font-style: normal;
}
 @font-face {
     font-family: 'NeoDgm';
     src: url(https://humantooth.neocities.org/fonts/neodgm_pro.woff) format('woff');
     font-weight: normal;
     font-style: normal;
}
 
 
 @font-face {
  src: url("https://www.axis-praxis.org/fonts/webfonts/MetaVariableDemo-Set.woff2")
    format("woff2");
  font-family: "Meta";
  font-style: normal;
  font-weight: normal;
}

body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #ede1fc;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #c5abe6;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #ede1fc;  /* creates padding around scroll thumb */
}

body{
  background:#CDDC39;
  cursor:url('images/icons/cursor.png'), auto;
}

p{
  font-family: "Meta";
}

h2{
  color:#000;
  font-size:2em;
  font-family: 'sf buttacup lettering shaded', sans-serif;
}
.tabwarpper{
  display:flex;
  flex-direction: column;
  align-items: center;
}
.tab{
  cursor: pointer;
  padding:10px 20px;
  margin:0px 2px;
  background:#000;
  display:inline-block;
  color:#fff;
  border-radius:3px 3px 0px 0px;
  box-shadow: 0 0.5rem 0.8rem #00000080;
  cursor:url('images/icons/cursor.png'), auto;
}
.panels{
  background:#fffffff6;
  box-shadow: 0 2rem 2rem #00000080;
  min-height:200px;
  width: 100%;
  max-width: 1090px;
  border-radius:3px;
  overflow:hidden;
  padding:25px;
  padding-left:50px;
  padding-right:50px;
}
.panel{
  display:none;
  animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
  font-size:1.5em;
  font-weight:bold
}
.radio{
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel,
#four:checked ~ .panels #four-panel{
  display:block
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab,
#four:checked ~ .tabs #four-tab{
  background:#fffffff6;
  color:#000;
  border-top: 3px solid #000;
}

.panels ul {
     display:flex;
     flex-direction: column;
     flex-wrap: wrap;
     justify-content: center;
}

ul {
     display:flex;
     flex-direction: row;
     flex-wrap: wrap;
     justify-content: center;
     font-size: 14px;
}

ul a{
  cursor:url('images/icons/cursor.png'), auto;
}

details > summary {
  padding: 10px;
  height: auto;
  width: 200px;
  background-color: black;
  cursor: pointer;
  color: rgb(247, 243, 243);
  cursor:url('images/icons/cursor.png'), auto;
}

details > p {
  background-color: #eeeeee;
  padding: 4px;
  margin: 0;
  width: auto;
  background:#000000;
  font-size: 1em;
  font-family:monospace;
}

/*Classes for links section.*/
.links {
  font-size:1.25em;
  color:white;
  background:#000000;
  padding: 15px;
  text-align:left;
  }
 
/*Links are put into a ul list element*/ 
.links ul {
  list-style-type: none;
  margin:0px;
  padding: 0;
  }
  
/*Use li for the individual links*/
.links li {
  list-style-type: none;
  display: inline-block;
  padding: 3px 10px 3px 10px;
  margin: 3px 2px 3px 2px;
  background: #663348;
  }
  
.links a {
  color: #c5abe6;
  text-decoration:none;
  cursor:url('images/icons/cursor.png'), auto;
  }
  
.links a:hover { /*The color link buttons turn when hovered over*/
  color: rgb(104, 182, 255);
  font-style: italic;
  }
  
 #moonicon{
     width:15px;
}

* {
    box-sizing:border-box;
}
 body {
    background: #7eafc1;
    background-image: linear-gradient(0deg, #fff7fb, #efe7f2, #dbd8ea, #bfc9e2, #98b9d9, #6aa8cf, #4096c0, #1987a0, #008f8c, #00a78b, #00c7a6);
     font-family:monospace;
}

 img {
    max-width:100%;
}
.nsfwimg {
    max-width:100%;
    filter:blur(11px)
}
.nsfwimg:hover{
  filter:blur(0);
}
 .wrap {
    max-width:1120px;
     margin:0 auto;
}
 .container {
    column-count:3;
     column-gap:0;
     margin-top:15px;
}

.block {
    display:inline-block;
     width:100%;
     padding:0 7.5px;
     
}
 .block > div {
    margin-bottom:15px;
     border:2px solid #06282C;
     padding:10px;
     font-size:14px;
     line-height:1.4;
     color: white;
     background-color: #0608757d;
}

@media screen and (max-width:1024px) {
     .container {
        column-count:2;
    }
}
 @media screen and (max-width:640px) {
     .container {
        column-count:1;
    }
}

