@import url('https://fonts.googleapis.com/css?family=Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono');

body {
  background: white;
  font-family: Ubuntu;
  color:#7eda28;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
}

header>a {
  width: 400px;
  font-size: 40px;
  margin: 0 0 18px 10px;
  line-height: 36px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0px 2px 3px #555;
}
  
header>h1 {
  color: #777;
  clear: right;
  font-style: italic;
  font-size: 14px;
  margin: 14px 10px 18px 0;
}

#container {
  display: block;
  justify-content: center;
  align-items: center;
}

#terminal {
  width: 99%;
  height: 99%; 
  box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

#terminal__bar {
  display: flex;
  width: 100%;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: linear-gradient(#504b45 0%,#3c3b37 100%);
}

#bar__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bar__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 12px;
  width: 12px;
  box-sizing: border-box;
  border: none;
  border-radius: 100%;
  background: linear-gradient(#7d7871 0%, #595953 100%);
  text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
  box-shadow: 0px 0px 1px 0px #41403A, 0px 1px 1px 0px #474642;
}
.bar__button:hover {
  cursor: pointer;
}
.bar__button:focus {
  outline: none;
}
#bar__button--exit {
  background: linear-gradient(#f37458 0%, #de4c12 100%);
  background-clip: padding-box;
}

#bar__user {
  color: #d5d0ce;
  margin: auto;
  font-size: 14px;
  line-height: 15px;
}

#terminal__body {
  background: black;
  font-family: 'Ubuntu Mono';
  height: calc(100% - 30px);
  padding-top: 2px;
  margin-top: -1px;
}

#terminal__prompt {
  display: flex run-in;
  align-items: baseline;
}

#terminal__prompt--user {
  color: #7eda28;
}
#terminal__prompt--root {
  color: #7eda28;
}

#terminal__prompt--location {
  color: #4878c0;
}

#terminal__prompt--bling {
  color: #dddddd;
}

#terminal__prompt--ls {
  color: #dddddd;
}

#terminal__prompt--folder {
  color: #dddddd;
}

#terminal__prompt--folder a {
  color: #4878c0;
  font-weight: none;
  text-decoration: none;
}

#terminal__prompt--file {
  color: #dddddd;
}

#terminal__prompt--file a {
  color: #dddddd;
  font-weight: none;
  text-decoration: none;
}

#terminal__prompt--cursor {
  display: flex;
  height: 17px;
  width: 8px;
  margin-left: 9px;
  animation: blink 1200ms linear infinite;
}

#terminal__prompt--cursor--file {
  display: flex;
  height: 17px;
  width: 8px;
  animation: blink 1200ms linear infinite;
}

@keyframes blink {
    0% { background: #ffffff; }
   49% { background: #ffffff; }
   60% { background: transparent; }
   99% { background: transparent; }
  100% { background: #ffffff; }
}

@media (max-width: 600px) {
  header>a {
    font-size: 30px;
  }
  pre {
    font-size: x-small;
  }
  #terminal {
    font-size: x-small;
    max-height: 100%;
    width: 98%;
  }
}
