html,body {
    background-color: #FFFFFF;
	height: 97%;
}


.terminal .terminal-window {
  padding: 15px;
  font-size: medium;
  font-weight: normal;
  font-family: "Courier New", Monaco, monospace;
}


.terminal .terminal-window .path {
  margin-right: 10px;
  color:#729fcf;
}

.terminal .terminal-window .user {
  color:#6fc736;
  font-weight: bold;
}

/* Create the blinkin cursor*/
.terminal .terminal-window .cursor {
  background-color: #FFFFFF;
  animation: blink 1s steps(5, start) infinite;
  -webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink {
  to {
    visibility: hidden;
  }
}





