/************************************************************************

DART 450, Winter 2018
Final
Kathleen Capiral

Description

************************************************************************/

* {
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  color: #00FF3B;
}

#container {
  margin: 25px;
}

#mainTextContainer {
  margin-bottom: 25px;
  font-size: 1rem;
}

.cursor {
  width: 0.5rem;
  height: 1rem;
  background: #00FF3B;
  position: absolute;
}

.mainCommandDescriptionContainer {
  margin-bottom: 25px;
}

.command {
  color: cyan;
}

input {
  background: transparent;
  border: none;
  outline: none;
  color: #00FF3B;
  font-family: 'Source Code Pro', monospace;
  font-size: 1rem;
}

.activeText {
  font-size: 1rem;
}

/*DESKTOP: 1920PX AND HIGHER*/
@media only screen and (min-width: 1920px) {
  #mainTextContainer {font-size: 2rem;}
  #cursor {font-size: 2rem;}
  input {font-size: 2rem;}
  .activeText {font-size: 2rem;}
}
