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

body {
  max-width: 100vw;
  min-width: 100vw;
  max-height: 100vh;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-family: Play, Arial, Verdana, "Trebuchet MS", sans-serif;
  /*  font-family: 'Koulen', cursive; font-family: 'Ultra', serif; */
  /* font-family: 'Barrio'; */
  /* font-family: 'Flavors', cursive; */
  /*-webkit-text-stroke: 1px hsl(261, 52%, 68%);*/
  /*color: hsl(150, 93%, 68%);*/
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden; }

a {
  text-decoration: none;
  color: #00ade1;
  text-transform: uppercase;
  transition: color 0.3s linear; }
  a:visited {
    color: #00ade1; }
  a:hover {
    color: #fff;
    transition: color 0.3s linear; }

#psybg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  opacity: 0.666;
  overflow-x: hidden;
  display: grid;
  align-items: center;
  pointer-events: none;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
  animation-name: color_rotate; }
  #psybg > video {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none; }
    @media (min-width: 320px) and (orientation: portrait) {
      #psybg > video {
        width: auto;
        height: 100%; } }
  #psybg * {
    pointer-events: none; }
  #psybg div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; }

.rbody {
  position: relative;
  top: 0;
  left: 0;
  overflow-x: hidden;
  z-index: 1;
  background: transparent;
  padding: 20px 16px 16px;
  width: 900px;
  margin: 0 auto; }

@keyframes logo_rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes fade_page {
  from {
    transform: rotate(0deg) scale(1); }
  to {
    transform: rotate(360deg) scale(0); } }
@keyframes logo_rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes color_rotate {
  from {
    filter: hue-rotate(0deg); }
  to {
    filter: hue-rotate(360deg); } }
header {
  display: grid;
  align-content: center;
  justify-items: center;
  justify-content: center;
  align-items: center;
  grid-template-areas: "img name" "img menu";
  background: transparent; }
  @media (min-width: 320px) and (orientation: portrait) {
    header {
      grid-template-columns: 100%;
      grid-template-areas: "img" "name" "menu"; } }
  header h1 {
    font-weight: bold;
    font-size: 40px;
    grid-area: name;
    transform: translateY(18px);
    margin-bottom: 16px;
    cursor: pointer; }
    header h1 div {
      font-size: 10px;
      letter-spacing: 0.39pt;
      background: #00ade1;
      padding: 4px 8px;
      text-transform: uppercase;
      font-weight: bolder;
      color: #fff;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); }
  header ol {
    grid-area: menu;
    grid-column: 2;
    list-style: none;
    padding: 8px;
    font-size: 15pt;
    text-shadow: -1px -2px 3px rgba(255, 255, 255, 0.5), 2px 2px 2px rgba(0, 0, 0, 0.7); }
    header ol li {
      display: inline-block;
      color: #fff;
      position: relative; }
      header ol li a {
        padding: 4px 8px;
        width: 100%;
        height: 100%; }
      header ol li.active {
        transform: scale(1.5);
        margin: 0 24px; }
        header ol li.active a {
          color: #fd9f9f !important; }
    @media (min-width: 320px) and (orientation: portrait) {
      header ol {
        grid-column: 1;
        margin-top: 16px; }
        header ol li {
          padding: 4px;
          font-size: 90%; } }
  header div.img {
    grid-area: img;
    display: inline-block;
    position: relative;
    height: 120px;
    width: 180px;
    transform: translateX(-26px); }
    @media (min-width: 320px) and (orientation: portrait) {
      header div.img {
        width: auto; } }
  header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 132px;
    animation-duration: 13s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-name: logo_rotate, color_rotate;
    transition: width 0.3s ease-out, left 0.3s ease-out, top 0.3s ease-out; }
    @media (min-width: 320px) and (orientation: portrait) {
      header img {
        position: relative; } }
    header img:hover {
      transition: width 0.3s ease-in, left 0.3s ease-in, top 0.3s ease-in;
      width: 168px;
      left: -18px;
      top: -18px; }

#reco {
  margin-top: 60px;
  font-size: 20px; }
  #reco a {
    margin: 4px 0;
    display: block; }

.dj {
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.15);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0px 0px 16px 8px rgba(0, 255, 0, 0.666);
  transform-origin: center top; }
  .dj li {
    display: grid;
    grid-template-columns: 300px calc(100% - 320px);
    align-content: center;
    justify-items: center;
    justify-content: center;
    align-items: center;
    grid-column-gap: 20px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 10px dotted #8BC34A; }
    .dj li div.desc {
      height: 100%; }
      .dj li div.desc h3 {
        font-size: 26px;
        margin-bottom: 16px;
        padding: 8px; }
      .dj li div.desc p {
        display: block;
        text-align: justify;
        color: #c5ff3b;
        font-size: 18px;
        padding: 8px;
        min-height: 400px; }
    .dj li div.refs {
      padding: 16px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      height: 96px;
      display: grid;
      align-content: center;
      align-items: center;
      grid-template-columns: 50% 50%;
      justify-content: space-between;
      justify-items: stretch; }
      .dj li div.refs a:first-child {
        margin-right: 32px; }
      .dj li div.refs img.fb {
        filter: brightness(1.4);
        height: 40px; }
      .dj li div.refs img.soundcloud {
        height: 50px; }
      .dj li div.refs img.mixcloud {
        height: 80px; }
    .dj li div.photos {
      display: grid;
      align-items: center; }
      .dj li div.photos > img {
        width: 300px;
        border-radius: 50%;
        border: 6px dotted #00abdf;
        padding: 8px;
        margin-bottom: 32px; }

.current {
  opacity: 1;
  transform: scale(1);
  z-index: 4;
  transform: scale(1) rotate(0deg);
  transition: opacity 0.95s ease-out, transform 0.9s ease-out; }

.collapsed {
  opacity: 0;
  transform: scale(0) rotate(720deg);
  height: 0;
  transition: opacity 0.9s ease-in, transform 1s ease-in, height 0.1s ease-out 0.8s; }

.hidden {
  display: none; }

.tibidi {
  margin-top: 32px;
  padding: 32px 16px;
  border-top: 4px dotted lime; }
  .tibidi img {
    max-width: 600px; }

a.psymail {
  color: #fff;
  position: absolute;
  text-align: center;
  font-family: Play;
  font-size: 26px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  z-index: 99; }
  a.psymail span {
    opacity: 0.001;
    display: inline-block;
    padding: 30px 38px;
    border-radius: 50%;
    box-shadow: inset 0 0 60px whitesmoke, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff;
    /*border: 15px solid #e61ee90f;*/
    /* border-block-end-style: inset; */
    /* outline: 3px solid #e91e6382; */
    /* outline-style: outset; */
    /* outline-offset: -16px; */ }
    a.psymail span.shsh {
      animation-fill-mode: both;
      animation-timing-function: ease-in;
      animation-name: fadeIn;
      animation-duration: 4s;
      box-shadow: inset 0 0 60px whitesmoke, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.truth {
  text-align: left;
  margin: 32px 0 0 115px;
  padding: 40px 8px 20px 8px;
  line-height: 38px;
  font-size: 24px;
  text-shadow: 0 0 6px rgba(202, 228, 225, 0.98), 0 0 30px rgba(202, 228, 225, 0.42), 0 0 12px rgba(30, 132, 242, 0.58), 0 0 22px rgba(30, 132, 242, 0.84), 0 0 38px rgba(30, 132, 242, 0.88), 0 0 60px #1e84f2;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
  animation-name: color_rotate; }
  .truth ch-s {
    display: inline;
    opacity: 0; }
  .truth .fade {
    animation-fill-mode: both;
    animation-timing-function: ease-in;
    animation-name: fadeIn; }
  .truth p,
  .truth b,
  .truth span {
    opacity: 0; }
    .truth p.fade,
    .truth b.fade,
    .truth span.fade {
      animation-fill-mode: both;
      animation-timing-function: ease-in;
      animation-name: fadeIn; }

@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1); }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9); }
  77% {
    opacity: 1; }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0); } }

/*# sourceMappingURL=main.css.map */
