*,
*::before,
*::after {
  box-sizing: border-box;
}
/* html { */
	/* height: 100%; */
	/* width: 100%; */
/* } */
body, html {

    background: #111111;
	/* overflow: hidden; */

    font-family: "Gabarito", sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}

.borgor, .closeme {
  color: #393E46;
}

/* .title {
  position:static;
  text-align: center;
padding-bottom: 5px;

  display:block;
} */

/* Navbar */


nav {
  background-color: #242424;
  position: sticky;
  top: 0;
  box-shadow: 3px 3px 5px rgba(0,0,0, 0.3);
  z-index: 30;
    box-sizing:border-box;

}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;

}

nav li{
  height: 80px;
}

nav input {
  margin-right: 16px;
  margin-left: 16px;
  margin-top:0px;
}

nav a{
  height: 100%;
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  color: #cccccc;
  transition: 0.3s;
  text-decoration: none;
  font-size: 1.5em;
}

nav a:hover{
  color: #393E46;
  background-color: #EEEEEE;
  transition: 0.3s;
}

nav li:first-child{
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

}
.sidebar li {
  width: 100%;
}
.sidebar a {
width: 100%;
}

/* Navbar end */



#hideAll
 {
   position: fixed;
   left: 0px;
   right: 0px;
   top: 0px;
   bottom: 0px;
   background-color: #101014;
   z-index: 99; /* Higher than anything else in the document */
transition: 0.3s;
 }

/* NSFW toggle */




input[type="checkbox"] {
  height: 60px;
  width: 60px;
  -webkit-appearance: none;
padding: auto;
  border-radius: 30%;
  border: 2px solid #ececec;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  transition: 0.3s;
}

input[type="checkbox"]:hover {
  border: 2px solid #2DAEB1;
  border-radius: 40%;
  transition: 0.3s;
}

input[type="checkbox"]:checked:hover {
    border: 2px solid #2DAEB1;
  border-radius: 40%;
  transition: 0.3s;
}

input[type="checkbox"]::after {
  font-family: "Gabarito", sans-serif;
  content: "SFW";
  color: #ececec;
  font-size: 1.5em;
  transition: 0.3s;
}
input[type="checkbox"]:checked{
  border-radius: 50%;
  border: 2px solid #ff0031;
}
input[type="checkbox"]:checked::after{
  content: "18+";
  color: #ff0031;
  transition: 0.3s;
}
#greet {
	display:block;
	overflow:hidden;
	position:absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
		
	
	    /* background-image: url(img/site/orc-girl.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}


.main-text a {
	 color: rgba(10,180,210, 1);
  text-decoration: none;
}

.main-text a {
  background:
    linear-gradient(
      to right,
      rgba(10,180,210, 1),
      rgba(10,180,210, 1)
    ),
    linear-gradient(
      to right,
      rgba(255, 0, 0, 1),
      rgba(255, 0, 180, 1),
      rgba(0, 100, 200, 1)
  );
  background-size: 100% 3px, 0 3px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition:  background-size 400ms, color 400ms;
}

.main-text a:hover {
  color: inherit;
  background-size: 0 3px, 100% 3px;
}





#greet img {
display:block;
margin-right: 0;
margin-top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;

  z-index: 1;
}


.greet-child {
	 display: block;
	 position:absolute;
	 top:0;
	 left:0;
	height: 100%;
	width: 100%;

		background: rgba(12,12,18,0.9);
		overflow: hidden;

}

.greet-child div {
	text-wrap: nowrap;
	/* height: 50%; */
	/* width: 100%; */
}

.greet-child h1 {
margin-left: 4%;
margin-top: 4%;
margin-bottom: 0;
 font-size:8vmin;
}
.greet-socials {
	position:absolute;
	    margin-left: auto;
    margin-right: auto;
	bottom: 4%;
	display: block;
	height: 10%;
	text-align: center;
width: 100%;
	font-size: 8vmin;
}

.greet-socials a{
	color: #fff;
	padding: 30px;
  background-color: rgba(10, 180, 210, 0);
  border-radius: 50%;
  transition: 0.3s;
}

.greet-socials a:hover{
  color: rgba(10,180,210, 1);
  background-color: #EEEEEE;
 
  border-radius: 10%;
  transition: 0.3s;
}


.gallery {
  margin: 20px;
  width: 1fr;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content: center;
}




.art {
  display:block;
  margin: 1px;
    border-radius: 0%;
	/* border: 1px solid #ececec; */ 
position: relative;
  aspect-ratio: 1/1;
  box-shadow: 3px 3px 5px rgba(0,0,0, 0.3);
  overflow: hidden;
  z-index: 2;
  transition: 0.3s;
}

/* .art:hover {
border: 1px solid #ececec;
transition: 1s;
}
*/
.art .title {
  display: none;
  font-size: 32px;
  position: absolute;
  top: 4%;
  left: 4%;
  z-index: 5;
   transition: 0.3s;
}

.art:hover .title {
	 display: block;
	  transition: 0.3s;
	
}
 

.art .showart {
  position: absolute;
  bottom: 8px;
  left: 16px;
  z-index: 4;
}


.art img {

  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  justify-content: center;
  z-index: 1;
}

/* .art.nsfw img {
  filter: blur(10px);
  transition: 0.3s;
}

.art.nsfw img:hover {
  filter: blur(0px);
  transition: 0.3s;
} */

.nsfw::after {
    position: relative;
    top:2px;
  font-family: "Gabarito", sans-serif;
  content: "18+";
  color: #ececec;
  font-size: 2vmin;
  transition: 0.3s;
  z-index: 5;
}

.art img:hover {

  -webkit-filter: brightness(40%);
  cursor: pointer;
  transition: 0.3s;
    justify-content: center;
    z-index: 1;
}
.fa-fire {
  color: #ff0031;
}

.art .tags {
  position: absolute;
  font-size: 30px;
  bottom: 8px;
  right: 16px;
  z-index: 5;
}

.hidden {
  display:none;
}

.menu-button {
  display:none;
}
@media(max-width: 900px){
  .hideOnMobile{
    display: none;
  }
  .menu-button {
    display:block;
  }
}

@media (max-width: 400px){
  .sidebar {
    width: 100%;
  }
}









