@keyframes pulse {

  0% {color: #06f;}
  50% {color: #0cf;}
  100% {color: #06f;}
}

@keyframes main-rot {
  0% {transform: rotateZ(0deg);}
  100% {transform: rotateZ(360deg);}
}

@keyframes main-but-rot {
  0% {transform: rotateZ(360deg);}
  100% {transform: rotateZ(0deg);}
}

html, body
{
    height: 100%;
}

body {

  color: #fff;
  
  margin: 0;
  padding: 0;
  background: #000 url(bg.png); 
  
  font-family: monospace;
  font-size: 16px;
  
  overflow: hidden;
  
}

#startup {

  z-index: 1000;
  
  position: absolute;
  
  width: 100%;
  height: 100%;
  
  background: #000;
  color: #0cf;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  animation-name: pulse;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  
  user-select: none;
  
}

#container {

  position: absolute;
  
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
    
}

#im-dfm {

  position: absolute;
  
  width: 100%;
  height: 100%;
  
  background: url(dfm.png);
  background-position: center;
  background-repeat: no-repeat;
  
  pointer-events: none;
  
}

#music-info {

  position: absolute;
  
  color: #06f;
  
  font-size: 12px;
  
  margin: 4px;
  
  left: 0;
  bottom: 0;
  
  user-select: none;
  
}

#music-info:hover {

  cursor: pointer;
  
}

#music-info:before {

  content: "Now playing ";
  
}

#copy-info {

  position: absolute;
  
  color: #06f;
  
  font-size: 12px;
  padding: 4px;
  
  right: 0;
  bottom: 0;
  
  user-select: none;
  pointer-events: none;
  
}

#main-wrapper {

  position: absolute;
  
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transform: scale(0.75);
  filter: blur(8px)
  
}

.main-icon-wrapper {

  position: absolute;
  
  width: 0;
  height: 624px;
  
  animation-name: main-rot;
  animation-duration: 120s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  
}

.main-icon-wrapper2 {

  width: 0;
  height: 100%;
  
}

.main-icon-wrapper-3 {

  display: flex;
  justify-content: center;

}

.main-button-wrapper {
  
  width: 128px;
  height: 128px;
  
  animation-name: main-but-rot;
  animation-duration: 120s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  
}

.main-button {

  width: 128px;
  height: 128px;
  border-radius: 256px;
  
  
  
  transform: scale(0.89);
  filter: blur(1px);
  opacity: 0.36;
  
  transition-duration: 0.25s;
  
}

.main-button:hover {

  cursor: pointer;
  
  transform: scale(1);
  filter: blur(0px);
  opacity: 1;
  
}

.mbt0 {
  background: url(bt-steam.png);
}

.mbt1 {
  background: url(bt-guides.png);
}

.mbt2 {
  background: url(bt-music.png);
}

.mbt3 {
  background: url(bt-cbp.png);
}

.mbt4 {
  background: url(bt-cv.png);
}

.mbt5 {
  background: url(bt-projects.png);
}

#steam-profile {

  position: absolute;
  
  left: -50%;
  width: 200%;
  height: 300%;
  
  transform: scale(0.75) translateY(-104px);
  transform-origin: top;
  
  border: 0;

  z-index: -100;
  pointer-events: none;
  
  opacity: 0.2;

}

#guides-wrapper {

  position: absolute;
  
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transform: scale(0.75);
  filter: blur(8px);
  
  opacity: 0;
  
  pointer-events: none;
  
}

#exploits-wrapper {

  position: absolute;
  
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transform: scale(0.75);
  filter: blur(8px);
  
  opacity: 0;
  
  pointer-events: none;
  
}

#cv-wrapper {

  position: absolute;
  
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transform: scale(0.75);
  filter: blur(8px);
  
  opacity: 0;
  
  pointer-events: none;
  
}

#projects-wrapper {

  position: absolute;
  
  width: 100%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transform: scale(0.75);
  filter: blur(8px);
  
  opacity: 0;
  
  pointer-events: none;
  
}

#guides-container {

  position: absolute;

  border-color: #06f;
  border-width: 1px;
  border-style: solid;
  
  ---max-width---: 1024px;
  ---#max-height---: 576px;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  text-align: center;
  
  user-select: none;
  
  backdrop-filter: grayscale(1);
  
}

#guides-container-backdrop {

  position: absolute;

  max-width: 1024px;
  max-height: 576px;
  width: 100%;
  height: 100%;
  
  margin: 64px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  z-index: -50;
  
  backdrop-filter: grayscale(1) blur(0px);
  
  transform: scale(0.75);
  filter: blur(8px);
  
  opacity: 0;
  
  pointer-events: none;
  
}

.guide-icon {

  width: 160px;
  height: 160px;
  
  margin: 8px;
  
  color: #06f0;
  
  font-size: 20px;
  font-weight: 900;
  line-height: 160px;
  
  display: inline-block;
  
  transition-duration: 0.3s;
  
  user-select: none;
  
  overflow: hidden;
}

.guide-icon:hover {

  color: #0fff;
  cursor: pointer;

}

.guide-icon:before {

  position: absolute;
  
  z-index: -1;
    
  width: 160px;
  height: 160px;
  
  content: "";
  
  background-color: #0000;
  background: var(--bg);
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  
  transition-duration: 0.3s;
  
}

.guide-icon:hover:before {

  background-color: #000f;
  filter: grayscale() brightness(0.125);
  
}

.guide-description {

  width: 160px;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  
  overflow: hidden;
  
  pointer-events: none;
}