ul {
  list-style-type: none;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li#navbarlist {
  float: left;
  border-right: 1px solid #eee;
}

li#navbarlist a {
  display: block;
  color: white;
  text-align: center;
  padding: 8px 10px;
  text-decoration: none;
  font-family: Georgia;
}

li#navbarlist a:hover {
  background-color: #111;
}

li#navbarlist:last-child {
  border-right: none;
  border-left: 1px solid #eee;
} 

@font-face {
    font-family: 'TTOctosquares-Bold';
    src: url('fonts/ttoctosquares-bold.woff2') format('woff2'),
        url('fonts/ttoctosquares-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Keifont';
    src: url('../../fonts/keifont.woff2') format('woff2'),
        url('../../fonts/keifont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SetoFont-SP';
    src: url('../../fonts/setofont-sp.woff2') format('woff2'),
        url('../../fonts/setofont-sp.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'yuzu_pop_a_m_boldbold';
    src: url('../../fonts/yuzupop-webfont.woff2') format('woff2'),
         url('../../fonts/yuzupop-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Zero';
    src: url(../../fonts/ZeroGothic.woff2) format('woff2'),
         url(../../fonts/ZeroGothic.woff) format('woff');
	font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
background:#000; padding-bottom: 5rem;
}

li#tracklist {
	float: left;
}

div#tl {
	float: left;
	width: 500px;
	margin: 0% 7%;
}

h1 {
  text-align: left;
  margin-top: 5%;
  font-family: Zero;
  font-weight: normal;
  font-size: 36px;
  color: #fff;
}

p {
  text-align:center;
  color: #fff;
}

p#guest {
	text-align:left;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  color: #fff;
}

a {
  color:#fff;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a:hover {
  color: #fff;
  text-shadow:0px 0px 25px #aaa;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  display: inline-block;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

* { box-sizing: border-box; }
$duration: 30s;

@-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;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 4rem;
  background-color: rgba(#000, 0.9); 
  padding-left: 100%;
  box-sizing: content-box;

  .ticker {

    display: inline-block;
    height: 4rem;
    line-height: 4rem;  
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;

    -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: $duration;
            animation-duration: $duration;

    &__item {

      display: inline-block;

      padding: 0 2rem;
      font-size: 2rem;
      color: white;   

    }

  }

}

h1,h2,p,ol {padding: 0 15%;}

ol{
	color: white;
}

li#tracklist {
	font-size: 13px;
}

a{
	cursor: pointer;
}

h1 {
	font-size: 24px;
	font-family: georgia;
	font-style: italic;
	text-align: right;
	color: white;
	text-align: left;
}
h2 {
	font-size: 36px;
	font-family: georgia;
	font-style: italic;
	text-align: right;
	color: white;
}

p {
	color: #ffffff;
	font-size:12px;
	font-family:sans-serif;
	font-weight:bold;
	-webkit-text-fill-color: #ffffff;
	color: white;
	-webkit-text-fill-color: white; /* Will override color (regardless of order) */
	-webkit-text-stroke-width: .35px;
	-webkit-text-stroke-color: black;
	text-align: center;
}

p#guest {
	color: #ffffff;
	font-size:11px;
	font-family:sans-serif;
	font-weight:bold;
	-webkit-text-fill-color: #ffffff;
	color: white;
	-webkit-text-fill-color: white; /* Will override color (regardless of order) */
	-webkit-text-stroke-width: .35px;
	-webkit-text-stroke-color: black;
	text-align: left;
	font-style:italic;
}

.unselectable {
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #cc0000;
}

.image {
	margin-left: auto;
	margin-right: auto;
}

.image a{
	display:block;
}

.image img {
	display:block;
	width: 30%;
	height: 30%;
}
		
.vertLine {
	border-right:1px #ff0000;    /* line 1 pixel width, length of "Some content" */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
  --background: #060608;
  --color: #FAFAFA;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial;
}

.container {
  color: var(--color);
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
}

.right {
  text-align: right;
  width: 100%;
}

.stack {
  display: grid;
  grid-template-columns: 1fr;
}

.stack span {
  font-weight: bold;
  grid-row-start: 1;
  grid-column-start: 1;
  font-size: 6rem;
  --stack-height: calc(100% / var(--stacks) - 1px);
  --inverse-index: calc(calc(var(--stacks) - 1) - var(--index));
  --clip-top: calc(var(--stack-height) * var(--index));
  --clip-bottom: calc(var(--stack-height) * var(--inverse-index));
  clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
  animation: stack 340ms cubic-bezier(.46,.29,0,1.24) 1 backwards calc(var(--index) * 120ms), glitch 2s ease infinite 2s alternate-reverse;
}

.stack span:nth-child(odd) { --glitch-translate: 4px; }
.stack span:nth-child(even) { --glitch-translate: -8px; }

@keyframes stack {
  0% {
    opacity: 0;
    transform: translateX(-50%);
    text-shadow: -2px 5px 0 red, 2px -3px 0 blue;
  };
  60% {
    opacity: 0.5;
    transform: translateX(50%);
  }
  80% {
    transform: none;
    opacity: 1;
    text-shadow: 2px -3px 0 red, -2px 5px 0 blue;
  }
  100% {
    text-shadow: none;
  }
}

@keyframes glitch {
  0% {
    text-shadow: -2px 5px 0 red, 2px -3px 0 blue;
    transform: translate(var(--glitch-translate));
  }
  2% {
    text-shadow: 2px -3px 0 red, -2px 5px 0 blue;
  }
  4%, 100% {  text-shadow: none; transform: none; }
}