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

body {
  background-color: #160217;
  font-family: Ubuntu;
}

#container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#terminal {
  width: 70vw;
  height: 65vh;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

#terminal__bar {
  display: flex;
  justify-content: space-between;
  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;
}

.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__button--max{
  background: linear-gradient(#1cbc37 0%, #0fa428 100%);
  background-clip: padding-box;
}

#bar__button--min{
background: linear-gradient(#e3ba54 0%, #d2a127 100%);
}

#bar__user {
  flex-grow: 1;
  text-align: center;
  color: #d5d0ce;
  margin-left: 6px;
  font-size: 14px;
  line-height: 15px;
}

#terminal__body {
  display: flex;
  flex-direction: column;
  background: rgba(73, 54, 68, 0.9);
  font-family: 'Ubuntu Mono';
  height: calc(100% - 30px);
  padding-top: 2px;
  margin-top: -1px;
  overflow-y: auto;
}

#terminal__prompt--user {
  color: #7eda28;
  font-family: 'Ubuntu Mono';
  font-size: 14px;
}

#terminal__prompt--input {
  border: none;
  background-color: transparent;
  font-family: 'Ubuntu Mono';
  font-size: 14px;
  color: #7eda28;
  flex: 1;
}

#terminal__prompt--input:focus{
  outline: none;
  box-shadow: none;
}

#terminal__prompt{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
}

#terminal__output {
  flex-direction: column;
  align-items: flex-start;
}

.command__output {
  color: #7eda28;
  font-family: 'Ubuntu Mono';
  font-size: 14px;
  display: block;
}

.command__response {
  color: #7eda28;
  font-family: 'Ubuntu Mono';
  font-size: 14px;
  display: block;
}

a:link {
  color: white;
  text-decoration: none;
}

a:visited {
  color: white;
}