/* fonts */
@font-face {
	font-family: "tamzen"; 
	src: url("fonts/Tamzen10x20b.ttf") format("truetype");
}
@font-face {
	font-family: "gothic-byte"; 
	src: url("fonts/GothicByte.ttf") format("truetype");
}
@font-face {
	font-family: "arcade"; 
	src: url("fonts/arcade.ttf") format("truetype");
}


/* selection highlight */
::-moz-selection { /* Code for Firefox */
  color: #d6e4cf;
  background: rebeccapurple;
}
::selection {
  color: #d6e4cf;
  background: rebeccapurple;
}


/* scrollbar */
*{
	scrollbar-color: #000 #000;
	scrollbar-gutter: #000;
	::-webkit-scrollbar { width: 10px; }
	::-webkit-scrollbar-track { background: #000; }
	::-webkit-scrollbar-thumb { background-color: #000; border: transparent; }
	::-webkit-scrollbar-thumb:hover {background: #000; }
}


/* full */
body, html {
  cursor: crosshair;
	padding: 0;
	margin: 0;
	height: 100%;
	background: #000;
	font-family: tamzen, monospace;
	font-size: 18px;
	color: #a4ca92;
	display: flex;
}


/* images */
img {
	max-width: 100%;
}
img.screen {
	position: absolute;
	z-index: 0;
	height: 400px;
	width: 600px;
}
iframe {
	border: none;
	height: 100%;
	width: 100%;
}


/* other things */
#flower1 {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 0;
  color: rebeccapurple;
}

#butter1 {
  position: absolute;
  left: 850px;
  bottom: -400px;
  z-index: -1;
  color: rebeccapurple;
}

#spiral1 {
  position: absolute;
  left: 50px;
  top: 50px;
  z-index: -1;
  color: rebeccapurple;
}

#spiral2 {
  position: absolute;
  right: -70px;
  bottom: -1500px;
  z-index: -1;
  color: rebeccapurple;
}


/* text and headers */
h1, h2, h3, h4, h5, h6 {
	line-height: 1em;
}
h2 {
  color: #6e935c;
  font-family: "arcade";
  text-decoration: underline;
}
h3, h6{
	color: #d6e4cf;
}
h4 {
	text-decoration: underline;
}
h6 { font-size: 1em; }
h5 { font-size: 1.25em; }
h4 { font-size: 1.5em; }
h3 { font-size: 2em; }
h2 { font-size: 2.25em; }
h1 { font-size: 2.75em;}

a {
	color: rebeccapurple;
}

li a:hover { 
	background-color: #a4ca92;
	color: #000;
}

.hover:hover { 
	background-color: #a4ca92;
	color: #000;
 }
 
mark {
  background-color: #d6e4cf;
  color: rebeccapurple;
}

ul {
	list-style: square;
}
li {
	line-height: .75rem;
}

details {
	border: none;
	font-style: italic;
}
summary {
	color: #a4ca92;
}


/* breaks */
hr {
	border: none;
	border-top: 1px dashed;
}
hr.break {
	border: solid 3px;
}


/* text sections */
section {
	margin-right: 1rem;
	color: #d6e4cf;
	flex-direction: row;
}
section.side {
	height: 10rem;
	font-size: 14px;
	overflow-y: scroll;
	border: solid 1px;
	line-height: .75rem;
}
section.box {
  display: inline-flex;
	height: 10rem;
	font-size: 14px;
	border: dashed 1px;
	color:#d6e4cf;
}
div.columns {
	columns: 6rem 3;
	column-gap: 20px;
	display: inline-flex;
	max-width: 60em;
}


/* page sections */
.header {
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  z-index: 1;
}
.sidebar {  
  position: fixed; 
	line-height: .5rem;
	margin-right: 2rem;
	margin-left: 2rem;
	width: 12rem;
	color: #d6e4cf;
	z-index: 1;
}
.menu a {
	color: #a4ca92;
	text-decoration: none;
	padding: 6px 6px;
	font-size: 16px;
	text-align: left;
	z-index: 1;
}
.main {
	margin-top: 2rem;
	margin-right: 4rem;
	margin-left: 16rem;
	width: calc(80% - 5rem);
	color: #a4ca92;
	padding-left: 1rem;
	border-left: 2px solid #a4ca92;
	z-index: 1;
}
.updates {
  display: inline-flex;
  justify-content: space-between;
  color: #d6e4cf;
  flex-flow: row nowrap;
  z-index: 1;
}
.about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-flow: row nowrap;
  z-index: 1;
}
.side {
	height: 10rem;
	font-size: 14px;
	overflow-y: scroll;
	overflow-x: none;
	border: solid 1px;
	line-height: .75rem;
}


/* tooltips */
.tooltip {
 position: relative;
 display: inline-grid;
}
.tooltip .tooltiptext {
 visibility: hidden;
 padding: 0.25em 0.5em;
 text-align: center;
 border-radius: 0.25em;
 background-color: #d6e4cf;
 color: rebeccapurple;
 border: #d6e4cf solid 1px;
 box-shadow:0 0 5px #a4ca92;
 border-radius: 3px;
 white-space: pre-wrap;
 position: absolute;
 z-index: 1;
 top: 85%;
 transition-property: visibility;
 transition-delay: 0s;
}
.tooltip:hover .tooltiptext {
 visibility: visible;
 transition-delay: 0s;
}


/* ticker */
.ticker-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: 2rem;
  padding-left: 100%;
  background: black;
  z-index: 3;
}
.ticker {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  white-space: nowrap;
  padding-right: 100%;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 120s;
  animation-duration: 120s;
}
.ticker_item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.5rem;
  color: #6e935c;
}


/* effects */
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* sliding highlight */
.basic-1 {
	border-left: 1px solid #a4ca92;
  background: 
      linear-gradient(#a4ca92 0 0) 
      0 100% /var(--d, 0) 30px 
    no-repeat;
  transition:0.3s;
}
.basic-1:hover {
  --d: 100%;
  color: #000;
}

/* tilt */
.tilt-r2x {
  transform: rotate(5deg);
}

/* popout */
.popinoutanim {
   -webkit-animation: pop 1s ease-in-out infinite alternate;
 animation: pop 1s ease-in-out infinite alternate;
 -moz-animation: pop 1s ease-in-out infinite alternate;
}
  
@keyframes pop {
from {
transform:scale(0.95)
}

50% {
transform:scale(1)
}

to {
transform:scale(0.95)
}
}

/* glow */
.glow {
-webkit-box-shadow:0px 0px 25px 12px rgba(102,51,153,0.9);
-moz-box-shadow: 0px 0px 25px 12px rgba(102,51,153,0.9);
box-shadow: 0px 0px 25px 12px rgba(102,51,153,0.9);
}

/* crt */
.crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  background: fill;
  pointer-events: none;
}


/* vinyls */
/* (c) Layout created by Jack ☂ (https://layouts.spacehey.com/layout?id=106135) */
#vinyl-gallery * {
    all: unset;
  }
 
#vinyl-gallery {
  all: initial!important;
  width: 100%!important;
  height: 230px!important;
  margin: 30px 0!important;
  display: flex!important;
  flex-direction: row!important;
  position: relative!important;
  margin-left: -6px!important;
}

#vinyl-gallery .vinyl {
    all:unset!important;
  perspective: 500px !important;
  width: 18px!important;
  transition: width 0.5s!important;
}

#vinyl-gallery .vinyl:hover {
  width: 148px!important;
}

#vinyl-gallery img {
    all:unset!important;
  transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s!important;
  width: 180px!important;
  height: 180px!important;
  transform: rotateX(0deg) rotateY(25deg)!important;
  transform-style: preserve-3d!important;
  border-radius: 4px!important;
  border: 2px solid rgba(0, 0, 0, 0.1)!important;
object-fit: cover!important;
}

#vinyl-gallery .vinyl:hover img {
  transform: rotateX(0deg) rotateY(10deg)!important;
  width: 188px!important;
  height: 188px!important;
  margin-top: -2px!important;
}

#vinyl-gallery .title {
  color: #fff;
  font-family: tamzen, monospace;
  display: block;
  visibility: hidden;
  position: absolute;
  bottom: 0px;
  text-align: center;
  width: 100%;
  padding-left: 6px;
}

#vinyl-gallery .vinyl:nth-child(n):hover + .title {
  visibility: visible;
}