body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
  background-image: url('../images/back.png');
  cursor: url('../images/cursor.cur'), auto;
}

.logo {
  opacity: 0.5;
}

.container {
  width: 1391px;
  height: 861px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  margin-top: 20px;
  overflow: hidden;
}

.container::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 9;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

.container.off::after {
  animation: none;
}

.container::before {
  content: " ";
  display: block;
  position: absolute;
  top: 20px;
  width: 95%;
  height: 95%;
  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: 7;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.screen {
  width: 902px;
  height: 685px;
  position: relative;
  margin-top: -875px;
  margin-left: 105px;
  z-index: 2;
}

#black {
  position: absolute;
  top: 112px;
  left: 136px;
  width: 825px;
  height: 644px;
  background-color: #000;
}

#blank {
  background-color: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  margin-top: 0;
}

#music {
  position: absolute;
}

#startbtn {
  background-image: url('../images/start.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 151px;
  left: 367px;
  height: 46px;
  top: 446px;
  z-index: 6;
  visibility: hidden;
  animation: fadeIn 0.6s infinite alternate;
  cursor: url('../images/cursorcd.cur'), auto;
}

#mutebtn {
  background-image: url('../images/speaker.png');
  background-repeat: no-repeat;
  position: absolute;
  height: 26px;
  width: 26px;
  top: 5px;
  left: 5px;
  opacity: 1;
}

#powerbutton {
  position: absolute;
  height: 56px;
  width: 185px;
  top: 91px;
  left: 1136px;
  cursor: url('../images/cursorcd.cur'), auto;
}

#power {
  position: absolute;
  background-image: url("../images/power.svg");
  width: 135px;
  height: 155px;
  top: 345px;
  left: 475px;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 3;
  cursor: url('../images/cursorcd.cur'), auto;
}

#tv {
  background-image: url("../images/tv.png"), url("../images/shading.png");
  background-size: 100% 100%;
  width: 98%;
  height: 98%;
  position: relative;
  z-index: 10;
  border-width: 8px;
  border-color: #D5C9AA;
  border-style: solid;
  border-radius: 24px 24px 24px 24px;
  pointer-events: none;
}

#noise {
  background-color: #000;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  margin-top: 90px;
  pointer-events: none;
  position: absolute;
}

#noise2 {
  background-color: #000;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 7;
  margin-top: 90px;
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

#overlay {
  color: #00FF00;
  font-size: 60px;
  pointer-events: none;
  width: 128px;
  height: 50px;
  top: 67px;
  left: 70px;
  z-index: 6;
  visibility: hidden;
  position: absolute;
}

#orange {
  position: absolute;
  background-image: url(../images/orange.png);
  width: 390px;
  height: 404px;
  background-size: 100%;
  margin-left: -235px;
  bottom: -255px;
}

#water {
  position: absolute;
  background-image: url(../images/water.png);
  width: 379px;
  height: 404px;
  background-size: 100%;
  margin-left: -260px;
  bottom: 70px;
  transform: rotate(259deg);
}

#display {
  background-image: url("../images/logo.jpg");
  background-position: -201px -135px;
  width: 100%;
  height: 100%;
  margin-top: -685px;
  z-index: 1;
  position: absolute;
  visibility: hidden;
}

#games {
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  margin-top: -685px;
}

#player {
  position: absolute;
  top: 30px;
  left: 16px;
  width: 850px;
  height: 740px;
  margin-top: -45px;
  visibility: hidden;
}

.arrow {
  border-color: transparent;
  border-style: solid;
  border-width: 25px 40px 25px 0px;
  display: block;
  height: 0px;
  margin: 10em auto;
  opacity: 0.4;
  text-indent: -9999px;
  transform-origin: 50% 50%;
  width: 0;
  position: absolute;
  right: 62px;
  top: -65px;
  z-index: 11;
}
.left {
  -webkit-animation: leftarrow 0.6s infinite alternate ease-in-out;
  border-left: 25px solid #ff8100;
  right: 139px;
  top: -60px;
  border-width: 20px 0px 20px 25px;
}

.right {
  -webkit-animation: rightarrow 0.6s infinite alternate ease-in-out;
  border-right: 25px solid #ff8100;
  right: 75px;
  top: -60px;
  border-width: 20px 25px 20px 0px;
}

@keyframes leftarrow {
  0% { -webkit-transform: translateX(0); opacity: 0.9 }
  100% { -webkit-transform: translateX(-0.4em); opacity: 0.4 }
}

@keyframes rightarrow {
  0% { -webkit-transform: translateX(0); opacity: 0.9 }
  100% { -webkit-transform: translateX(0.4em); opacity: 0.4 }
}

*::selection {
  background: transparent;
}

*::-moz-selection {
  background: transparent;
}

*::-webkit-selection {
  background: transparent;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes flicker {
  0% {
    opacity: 0.08205;
  }
  5% {
    opacity: 0.86023;
  }
  10% {
    opacity: 0.53438;
  }
  15.0% {
    opacity: 0.83916;
  }
  20% {
    opacity: 0.4615;
  }
  25% {
    opacity: 0.49687;
  }
  30.0% {
    opacity: 0.44477;
  }
  35% {
    opacity: 0.75049;
  }
  40% {
    opacity: 0.59934;
  }
  45% {
    opacity: 0.28518;
  }
  50% {
    opacity: 0.56374;
  }
  55.0% {
    opacity: 0.35909;
  }
  60.0% {
    opacity: 0.29667;
  }
  65% {
    opacity: 0.0228;
  }
  70% {
    opacity: 0.84353;
  }
  75% {
    opacity: 0.9371;
  }
  80% {
    opacity: 0.74791;
  }
  85.0% {
    opacity: 0.6402;
  }
  90% {
    opacity: 0.13598;
  }
  95% {
    opacity: 0.67836;
  }
  100% {
    opacity: 0.38244;
  }
}