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

body {
  background: linear-gradient(160deg, rgb(0, 197, 240) 0%, rgb(58, 71, 213) 100%);
  font-family: Roboto;
}

a {
  color: #C678DD;
}

#dummy {
  opacity: 0;
  position: absolute;
}

#container {
  display: flex;
  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;
  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: #2c2c2c;
}

#bar_buttons {
  display: flex;
  align-items: center;
}

.bar_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 10px;
  height: 15px;
  width: 15px;
  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: #E06C75;
  background-clip: padding-box;
}

#bar_user {
  color: #d5d0ce;
  margin-left: 6px;
  font-size: 14px;
  line-height: 15px;
}

#terminal_body {
  background: #2c333bf0;
  color: #DDDDDD;
  font-family: 'Roboto Mono';
  height: calc(100% - 30px);
  padding: 3px;
  margin-top: -1px;
}

#terminal_prompt {
  display: flex;
  flex-wrap: nowrap;
}
#terminal_prompt-user {
  color: #98C379;
}
#terminal_prompt-location {
  color: #61AFEF;
}
#terminal_prompt-bling {
  color: #DDDDDD;
  margin-right: 9px;
}
#terminal_prompt-cursor {
  display: block;
  margin-left: 1px;
  height: 19px;
  width: 1px;
  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) {
  #terminal {
    max-height: 90%;
    width: 90%;
  }
}