@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");
}

*{
	cursor: crosshair;
}

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

::selection {
  color: #d6e4cf;
  background: rebeccapurple;
}

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

*{
	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; }
}

img {
	max-width: 100%;
}

img.screen {
	position: absolute;
	z-index: 0;
	height: 400px;
	width: 600px;
}

iframe {
	border: none;
	height: 100%;
	width: 100%;
}

iframe.video {
	z-index: 1;
	height: 315px;
	width: 560px;
}

iframe.ring {
	height: 135px;
	width: 135px;
}

div.columns {
	columns: 6rem 3;
	column-gap: 20px;
	display: inline-flex;
	max-width: 60em;
}

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

.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 {
-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);
}

border {
	border-top: solid 2px;
}

mark {
  background-color: #d6e4cf;
  color: rebeccapurple;
}

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

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

.hover:hover { 
	background-color: #a4ca92;
	color: #000!important;
 }


ul {
	list-style: square;
}

li {
	line-height: .75rem;
}

hr {
	border: none;
	border-top: 1px dashed;
}

hr.break {
	border: solid 3px;
}

details {
	border: none;
	font-style: italic;
}

summary {
	color: #a4ca92;
}

.sidebar {  
  position: fixed; 
	line-height: .5rem;
	margin-right: 2rem;
	margin-left: 2rem;
	width: 12rem;
	color: #d6e4cf;
}

.menu a {
	color: #a4ca92;
	text-decoration: none;
	padding: 6px 6px;
	font-size: 16px;
	text-align: left;
}

.main {
	margin-top: 2rem;
	margin-right: 4rem;
	margin-left: 16rem;
	width: calc(80% - 5rem);
	background: #000;
	color: #a4ca92;
	padding-left: 1rem;
	border-left: 2px solid #a4ca92;
}

.page {
	background: #000;
	color: #a4ca92;
	padding: 24px;
  z-index: -1;
	border-left-style: solid;
	border-width: 2px;
	border-color: #a4ca92;
}

.tabs {
  list-style: none; 
  position: relative; 
  margin: 0;
  padding: 0;
  width: 100%;  
  font-family: tamzen, monospace;
}

.updates {
  display: flex;
  justify-content: space-around;
  color: #d6e4cf;
  flex-flow: row nowrap;
}

.locker {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
}

.looker {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: no-wrap;
  justify-content: space-around;
  align-content: flex-start;
  align-items: stretch;
}

.about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-flow: row nowrap;
}

.tabs li {
  display: inline-block;
}
  

.tabs input[type="radio"] {
  display: none;
}

.tabs label {
  display: block;
  cursor: pointer;
  padding: 10px 15px;
  border: 2px solid black;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.tabs .tab-panel {  
  display: none;
  overflow: hidden;
  width: 100%;  
  position: absolute;
  left: 0;
  border-top: 2px solid black;
}

.tabs [id^="tab"]:checked + label {   
  background-color: #E0E2DB;
  text-decoration: underline;
  color: #010101;
}
.tabs [id^="tab"]:checked ~ [id^="tab-panel"] {
  display: block;
}

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

@-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);
  }
}

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

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


/* (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;
}


.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;

}




