@import url("https://fonts.googleapis.com/css?family=Inconsolata:400,700");
html {
  overflow: hidden;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  height: 100%;
  width: 100%;
  background: black;
}

html body {
  margin: 0;
  font-family: 'Inconsolata', arial;
}

html body:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vh;
  height: 50vh;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/455279/MOSHED-2020-4-23-9-10-48.gif) center no-repeat;
  background-size: 80% auto;
}

html body .hotbar {
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 2px solid rgba(255, 255, 255, 0.03);
  border-bottom: 2px solid rgba(255, 255, 255, 0.03);
  border-right: 2px solid rgba(255, 255, 255, 0.03);
  border-top-right-radius: 1vh;
  border-bottom-right-radius: 1vh;
  position: absolute;
  padding: 0.25vh;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

html body .hotbar .app {
  width: 5vh;
  height: 5vh;
  padding: 0.5vh;
  border-radius: 0.5vh;
  background-size: 60% auto;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background-size 0.1s;
  -ms-transition: background-size 0.1s;
}

html body .hotbar .app:nth-last-child(1) {
  padding: 0 0.5vh 0.5vh 0.5vh;
  background-size: 55% auto;
  opacity: 0.1;
}

html body .hotbar .app:active {
  background-size: 50% auto;
  -ms-transition: background-size 0.1s;
}

html body nav {
  position: relative;
  top: 0;
  left: 0;
  padding: 0.5vh;
  border-bottom: 1px solid #0d0d0d;
  background: linear-gradient(#1a1a1a, black);
  color: silver;
  font-size: 1.5vh;
  display: flex;
  z-index: 999;
}

html body nav .catagory {
  position: relative;
  padding: 0 0.5vh 0 1vh;
  margin-right: 1vh;
  cursor: pointer;
}

html body nav .catagory:after {
  content: "";
  position: absolute;
  right: -1vh;
  top: 0.65vh;
  height: 0.5vh;
  width: 1vh;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/455279/new-arrow.svg) center no-repeat;
  background-size: contain;
}

html body nav .catagory:hover .container {
  visibility: visible;
}

html body nav .catagory .container {
  visibility: hidden;
  cursor: default;
  position: absolute;
  padding-top: 2vh;
  border-radius: 0.2vh;
  display: block;
  margin: 0 auto 0 auto;
}

html body nav .catagory .container:hover {
  visibility: visible;
}

html body nav .catagory .container:after {
  content: "";
  position: absolute;
  display: block;
  width: 1.5vh;
  height: 1.5vh;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/455279/nav-arrow-dark.svg) center no-repeat;
  background-size: contain;
  top: 0.8vh;
  left: 0.5vh;
}

html body nav .catagory .container p {
  background-color: #0d0d0d;
  min-width: 20vh;
  cursor: pointer;
  padding: 0.2vh 0 0.2vh 1vh;
  margin: 0;
  font-size: 1.25vh;
  transition: text-indent 0.1s;
}

html body nav .catagory .container p:hover {
  text-indent: 1vh;
  transition: text-indent 0.1s;
}

html body nav .catagory .container p:active {
  color: white;
}

html body nav .catagory .container p:nth-last-child(1) {
  border-bottom-left-radius: 0.2vh;
  border-bottom-right-radius: 0.2vh;
  padding-bottom: 1vh;
}

html body nav .catagory .container p:nth-child(1) {
  border-top-left-radius: 0.2vh;
  border-top-right-radius: 0.2vh;
  padding-top: 1vh;
}

html body nav .catagory .container .disabled {
  text-decoration: line-through;
}

html body .select {
  visibility: hidden;
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

html body .terminal {
  position: absolute;
  top: 20%;
  left: 20%;
  border-top-left-radius: 0.5vh;
  border-top-right-radius: 0.5vh;
  background-color: rgba(255, 255, 255, 0.03);
  z-index: 998;
  transition: box-shadow 0.3s;
  -moz-transition: background-size 0.1s;
}

html body .terminal:hover {
  transition: box-shadow 0.3s;
  -moz-transition: box-shadow 0.3s;
  box-shadow: 1vh 1vh 1vh rgba(0, 0, 0, 0.05);
}

html body .terminal a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: padding 0.1s;
}

html body .terminal a:hover {
  padding: 0 0 0 1vh;
  transition: padding 0.1s;
}

html body .terminal .top {
  user-select: none;
  width: 100%;
  background: linear-gradient(#1a1a1a, black);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  cursor: pointer;
}

html body .terminal .top .buttons {
  display: flex;
  position: absolute;
  top: 0.8vh;
  right: 0;
}

html body .terminal .top .buttons .but {
  width: 1.1vh;
  height: 1.1vh;
  background-color: silver;
  margin-right: 1vh;
  border-radius: 1.1vh;
  box-shadow: inset 0 0 0.1vh rgba(0, 0, 0, 0.4);
}

html body .terminal .top .buttons .but:nth-child(1):before {
  position: absolute;
  height: inherit;
  width: inherit;
  content: "";
  background: url("https://assets.codepen.io/455279/mini_2.svg") center no-repeat;
  background-size: contain;
}

html body .terminal .top .buttons .but:nth-child(2):before {
  content: "";
  position: absolute;
  height: inherit;
  width: inherit;
  content: "";
  background: url("https://assets.codepen.io/455279/max_1.svg") center no-repeat;
  background-size: contain;
}

html body .terminal .top .buttons .but:nth-last-child(1) {
  margin-right: 1vh;
}

html body .terminal .top .buttons .but:nth-last-child(1):before {
  content: "";
  position: absolute;
  height: inherit;
  width: inherit;
  content: "";
  background: url("https://assets.codepen.io/455279/exit.svg") center no-repeat;
  background-size: contain;
}

html body .terminal .top h1 {
  font-family: 'Inconsolata', arial;
  color: silver;
  text-align: center;
  font-weight: 700;
  font-size: 1.15vh;
  padding: 0.75vh 0 1.25vh 0;
  margin: 0;
}

html body .terminal .top .nav {
  display: flex;
}

html body .terminal .top .nav p {
  color: silver;
  margin: 0 0 0.5vh 1vh;
  font-size: 1vh;
}

html body .terminal .container {
  display: flex;
  flex-direction: column;
  padding: 0.25vh;
  background-color: rgba(255, 255, 255, 0.03);
}

html body .terminal .container .screen {
  color: silver;
  font-weight: 700;
  min-width: 52vh;
  min-height: 13vh;
  max-height: 60vh;
  max-width: 60vh;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 25vh;
  background-color: transparent;
  overflow-y: auto;
  font-size: 1.25vh;
  resize: both;
}

html body .terminal .container input {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-left: none;
  border-bottom: none;
  border-right: none;
  color: silver;
  height: 1.5vh;
  outline-width: 0;
  background-color: transparent;
}
