.navbar {
  overflow: hidden;
  background-color: #53575d;
  box-shadow: 0px 3px 0px 0px #222222, 0px 7px 10px 0px #111111, inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2), inset 0px -12px 35px 0px rgba(0, 0, 0, 0.5);
  /* 4th Shadow */
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 3; }

#switch {
  display: none; }

.switch-label {
  color: #252525;
  text-shadow: 0px 1px 1px rgba(250, 250, 250, 0.1);
  font-size: 12pt;
  display: block;
  position: relative;
  text-decoration: none;
  background-color: #53575d;
  box-shadow: 0px 3px 0px 0px #222222, 0px 7px 10px 0px #111111, inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2), inset 0px -12px 35px 0px rgba(0, 0, 0, 0.5);
  /* 4th Shadow */
  width: 70px;
  height: 70px;
  border: 0;
  text-align: center;
  line-height: 79px; }
  .switch-label::after {
    content: "on"; }
  .switch-label::before {
    content: " "; }
  .switch-label:active {
    box-shadow: none; }

#switch:checked + .switch-label::before {
  background: #22ff55; }
#switch:checked + .switch-label::after {
  content: "off"; }

@keyframes flicker {
  0% {
    opacity: 0.54416; }
  5% {
    opacity: 0.3795; }
  10% {
    opacity: 0.30311; }
  15% {
    opacity: 0.75512; }
  20% {
    opacity: 0.57388; }
  25% {
    opacity: 0.78146; }
  30% {
    opacity: 0.4865; }
  35% {
    opacity: 0.51272; }
  40% {
    opacity: 0.4679; }
  45% {
    opacity: 0.00669; }
  50% {
    opacity: 0.08643; }
  55% {
    opacity: 0.42378; }
  60% {
    opacity: 0.19864; }
  65% {
    opacity: 0.70516; }
  70% {
    opacity: 0.67649; }
  75% {
    opacity: 0.39681; }
  80% {
    opacity: 0.94586; }
  85% {
    opacity: 0.272; }
  90% {
    opacity: 0.24448; }
  95% {
    opacity: 0.61213; }
  100% {
    opacity: 0.34817; } }
.container {
  background: #606060;
  position: relative; }
  .container::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(96, 96, 96, 0.1);
    opacity: 0;
    z-index: 2;
    pointer-events: none; }
  .container::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../crt_screen.png");
    background-repeat: repeat;
    z-index: 2;
    background-size: 14px;
    pointer-events: none;
    opacity: 0.1; }

#switch:checked ~ .container::after {
  animation: flicker 0.15s infinite; }

@keyframes turn-on {
  0% {
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 1; }
  3.5% {
    transform: scale(1, 0.8) translate3d(0, 100%, 0); }
  3.6% {
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
    opacity: 1; }
  9% {
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    -webkit-filter: brightness(30);
    filter: brightness(30);
    opacity: 0; }
  11% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-filter: contrast(0) brightness(0);
    filter: contrast(0) brightness(0);
    opacity: 0; }
  100% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    -webkit-filter: contrast(1) brightness(1.2) saturate(1.3);
    filter: contrast(1) brightness(1.2) saturate(1.3);
    opacity: 1; } }
@keyframes turn-off {
  0% {
    transform: scale(1, 1.3) translate3d(0, 0, 0);
    -webkit-filter: brightness(1);
    filter: brightness(1);
    opacity: 1; }
  60% {
    transform: scale(1.3, 0.001) translate3d(0, 0, 0);
    -webkit-filter: brightness(10);
    filter: brightness(10); }
  100% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: scale(0, 0.0001) translate3d(0, 0, 0);
    -webkit-filter: brightness(50);
    filter: brightness(50); } }
.screen {
  width: 100%;
  height: 100%;
  border: none; }

#switch ~ .container > .screen {
  animation: turn-off 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: forwards; }

#switch:checked ~ .container > .screen {
  animation: turn-on 4s linear;
  animation-fill-mode: forwards; }

@keyframes overlay-anim {
  0% {
    visibility: hidden; }
  20% {
    visibility: hidden; }
  21% {
    visibility: visible; }
  100% {
    visibility: hidden; } }
.overlay {
  color: #00FF00;
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 60px;
  visibility: hidden;
  pointer-events: none; }

#switch:checked ~ .container .overlay {
  animation: overlay-anim 5s linear;
  animation-fill-mode: forwards; }

body {
  background: #111;
  color: white;
  margin: 0px; }

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