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

body {
  max-width: 100vw;
  min-width: 100vw;
  min-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;
  min-height: 100vh;
  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;
  padding: 4px 8px;
  color: #fff;
}
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;
}
@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;
}

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