@import url(https://fonts.googleapis.com/css?family=Inconsolata:400,700);
html,
body {
  margin: 0 auto;
  height: 100%;
}
*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
pre {
  padding: 0;
  margin: 0;
}

.load {
  margin: 0 auto;
  min-height: 100%;
  width: 100%;
  background: black;
}

.term {
  font-family: monospace;
  color: #fff;
  opacity: 0.8;
  font-size: 2em;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 10px;
  padding-left: 20px;
}

.term:after {
  content: "_";
  opacity: 1;
  animation: cursor 1s infinite;
}

@keyframes cursor {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.screen{
  display: none;
  font-family: consolas;
  background-image: -webkit-linear-gradient(330deg, #fdfbfb 0%, #ebedee 100%);
  background-image: -o-linear-gradient(330deg, #fdfbfb 0%, #ebedee 100%);
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.wrapper{
  width: 100vw;
  height: 100vh;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.terminal-border{
  background: -webkit-linear-gradient(330deg, #f093fb 0%, #f5576c 100%);
  background: -o-linear-gradient(330deg, #f093fb 0%, #f5576c 100%);
  background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
  border-radius: 10px;
  width: 75vw;
  height: 80vh;
  padding: .2em;
  -webkit-box-shadow: 0 0 20px grey;
  box-shadow: 0 0 20px grey;
}

.terminal-window{
  overflow-y: overlay;
  border-radius: 10px;
  background-color: #212121;
  width: 100%;
  height: 100%;
}

.terminal-title{
  position: relative;
  top: -.9em;
  height: 5em;
  padding: 0 1em 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.terminal-title-btn{
  position: absolute;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.terminal-title-label{
  text-align: center;
  -webkit-box-flex: 10;
  -ms-flex: 10;
  flex: 10;
}

.terminal-title-btn span{
  font-size: 3em;
  margin: -.1em;

}

.terminal-title-btn .btn-close{
  color: rgba(252, 96, 92, 1);
}

.terminal-title-btn .btn-mini{
  color: rgba(253, 188, 64, 1);
}

.terminal-title-btn .btn-max{
  color: rgba(52, 204, 74, 1);
}

.terminal-title-label{
  color: white;
}
.comand-input{
  color: #f5576c;
  display: inline-block;
}

main{
  font-family: 'Inconsolata', monospace;
  font-size: 1em;
  line-height: 1px;
  background: inherit;
  color: #fefefe;
  margin: 0 20px;
  font-weight: 600;
}
::selection{
  background: #eee
}
::-webkit-selection{
  background: #eee
}
::-moz-selection{
  background: #eee
}
main a{
  color: #fefefe;
}
main a:hover,a:focus{
  background: #fefefe;
  color:#111;
}
.logo{
  display: block;
  float: right;
  width: 90px;
  margin: 0 3em;
}
.window main p, .window main h3{
  font-weight: 500;
  color: #eee;
  margin-bottom:1.5em;
  text-align: left;
  direction: ltr;
  line-height: 1.1em;
}
main abbr{
  cursor: help;
}
main ul{
  list-style: none;
  padding: 0;
}
main li{
  margin:1em 0 0;
}
main span{
  display: block;
  color:#999;
  line-height:1;
}

main kbd{
  font-family: 'Inconsolata', monospace;
  border:1px solid #999;
  text-transform: uppercase;
  padding:0 .1.5em;
}
main input[type="text"]{
  border: none;
  width: 75%;
  font-size: 1.1em;
  font-family: inherit;
  background: inherit;
  padding:0 .5em;
  caret-color: #fefefe;
  color: #fefefe;
}
main input[type="text"]:focus{
  background: inherit;
  color: #fefefe;
  outline:none;
}
main .command{
  color: #fefefe;
  font-weight: 700;
  margin: 1.2em 0;
  font-size: 1.1em;
}


section{
  display: none;
}
.open{
  display: block;
}
.copyright{
  margin: 0 auto;
  color: #aaa;
  bottom: 13px;
  text-align: center;
  padding: .9em 0;
}