html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background: #3a7bd5;
  background-image: -webkit-radial-gradient(top, circle cover, #002c35 0%, #070f1a 80%);
  /* display: flex; */
  /* justify-content: center; */
  align-items: center;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

* {
  box-sizing: border-box;
}

textarea, input, button {
  outline: none;
}

.window-button, .window .buttons .maximize, .window .buttons .minimize, .window .buttons .close {
  padding: 0;
  margin: 0;
  margin-right: 4px;
  margin-top: 4px;
  width: 12px;
  height: 12px;
  background-color: gainsboro;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.5);
}

.window {
  // animation: bounceIn 1s ease-in-out;
  width: 640px;
}
.xray {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 512px;
}
.xray .content {
  /* background-image: url(../img/rotaryLockMockup.png) */
}
.xray .outerCircle {
  position: absolute;
  top: 22px;
  left: 0;
  width: 512px;
  height: 512px;
  background-image: url(../img/rotaryLockOuter.png);
}
.xray .innerCircle {
  position: absolute;
  top: 21px;
  left: 0;
  width: 512px;
  height: 512px;
  background-image: url(../img/rotaryLockInner.png);
}
.xray #pin1 {
  position: absolute;
  width: 97px;
  height: 133px;
  background-image: url(../img/pin1.png);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.xray #pin2 {
  position: absolute;
  width: 113px;
  height: 89px;
  background-image: url(../img/pin2.png);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.xray #pin3 {
  position: absolute;
  width: 110px;
  height: 104px;
  background-image: url(../img/pin3.png);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.xray #pin4 {
  position: absolute;
  width: 82px;
  height: 112px;
  background-image: url(../img/pin4.png);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.xray #pin5 {
  position: absolute;
  width: 110px;
  height: 104px;
  background-image: url(../img/pin5.png);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.xray #pin6 {
  position: absolute;
  width: 113px;
  height: 89px;
  background-image: url(../img/pin6.png);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.xray #pin7 {
  position: absolute;
  width: 97px;
  height: 111px;
  background-image: url(../img/pin7.png);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.xray #pin1.inPin {
  top: 96px;
  left: 270px;
}
.xray #pin2.inPin {
  top: 202px;
  left: 336px;
}
.xray #pin3.inPin {
  top: 315px;
  left: 312px;
}
.xray #pin4.inPin {
  top: 361px;
  left: 215px;
}
.xray #pin5.inPin {
  top: 315px;
  left: 90px;
}
.xray #pin6.inPin {
  top: 202px;
  left: 63px;
}
.xray #pin7.inPin {
  top: 96px;
  left: 145px;
}
.xray #pin1.outPin {
  top: 53px;
  left: 290.5px;
}
.xray #pin2.outPin {
  top: 191px;
  left: 381px;
}
.xray #pin3.outPin {
  top: 343.5px;
  left: 348px;
}
.xray #pin4.outPin {
  top: 407.5px;
  left: 215px;
}
.xray #pin5.outPin {
  top: 343.5px;
  left: 54px;
}
.xray #pin6.outPin {
  top: 191px;
  left: 18px;
}
.xray #pin7.outPin {
  top: 53px;
  left: 124.5px;
}
.xray .rotLock {
  -webkit-animation:spin 4s linear 1;
  -moz-animation:spin 4s linear 1;
  animation:spin 4s linear 1;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
#draggable {
  display: block;
  width: 256px;
  height: 256px;
  z-index: 5;
  background-color: rgba(255, 0, 0, 0.5);
}
.xray .safeDoor {
  position: absolute;
  top: 22px;
  left: 0;
  width: 512px;
  height: 512px;
  background-image: url(../img/safeDoor.png);
}
.xray .transparent {
  opacity: 0.1;
}



.window .handle {
  height: 22px;
  background: linear-gradient(0deg, #d8d8d8, #ececec);
  border-top: 1px solid white;
  border-bottom: 1px solid #b3b3b3;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: rgba(0, 0, 0, 0.7);
  font-family: Helvetica, sans-serif;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}
.window .buttons {
  position: absolute;
  float: left;
  margin: 0 8px;
}
.window .buttons .close {
  background-color: #ff6159;
}
.window .buttons .minimize {
  background-color: #ffbf2f;
}
.window .buttons .maximize {
  background-color: #25cc3e;
}
.window .terminal {
  padding: 4px;
  background-color: black;
  opacity: 0.7;
  height: 90vh;
  color: white;
  font-family: "Source Code Pro", monospace;
  font-weight: 200;
  font-size: 14px;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow-y: auto;
}
.window .content {
  padding: 4px;
  background-color: black;
  opacity: 0.95;
  height: 512px;
  color: white;
  font-family: "Source Code Pro", monospace;
  font-weight: 200;
  font-size: 14px;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow-y: auto;
}
.window .terminal::after {
  content: "|";
  animation: blink 2s steps(1) infinite;
}

.electric {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 700px;
}
.electric .content {
  background-image: url(../img/electricalDiagram.png);
  background-size: contain;
  height: 489px;
}

.chat {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 800px;
}
.chat .content {
  display: block;
  height: 300px;
  opacity: 0.7;
}

.hash {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 512px;
}
.hash .content {
  display: block;
  height: 485px;
  opacity: 0.7;
}
.hashLink:hover {
  background-color: #999;
  color: #000;
  cursor: pointer;
}
.hashTitle {
  position: relative;
  top: -20px;
  display: block;
  padding: 5px;
  margin: 0;
  text-align: center;
  border: 3px double #FFF;
}
.hash table {
  position: relative;
  top: -35px;
  margin: 0;
}
.hash .hashCount {
  display: block;
  padding: 5px;
  margin-top: 5px;
  border-top: 1px solid #FFF;
}
.hash .hashResult {
  position: relative;
  top: -50px;
  height: 115px;
  padding: 5px;
  background-color: #999;
  color: #000;
}
.hashStrike, .hashStrike:hover {
  background-color: #3ca2f8;
}

.prompt {
  color: #bde371;
}
.green {
  color: #bde371;
}
.red {
  color: #e37171;
}
.blue {
  color: #5ed7ff;
}


.path {
  color: #5ed7ff;
}

@keyframes blink {
  50% {
    color: transparent;
  }
}
@keyframes bounceIn {
  0% {
    transform: translateY(-1000px);
  }
  60% {
    transform: translateY(200px);
  }
  100% {
    transform: translateY(0px);
  }
}
