/* general */

::selection {
  background: #d33682;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  font-size: 14pt;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  color: #c9d3d6;
  background : black;
 
}

p {
  color: #c9d3d6;
}

pre {
  color: #c9d3d6;
}

a {
  text-decoration: none;
  color: #42aaee;
}

a:hover {
  background-color: transparent;
  text-decoration: none;
  color: #3b88bb;
}

a:not([href]):not([tabindex]) {
  color: #EDED65;
}

a:not([href]):not([tabindex]):hover {
  color: #EDED65;
  background-color: transparent;
  cursor: pointer;
}

/* top */

.headshot {
  width: 200px;
  height: 200px;
  margin: 0px 10px 20px 0px;
  border-radius: 50px;
  float: left;
}

#container {
  padding: 2% 2% 8% 8%;
 
}

#container output {
  clear: both;
  width: 100%;
}

#container output h3 {
  margin: 0;
}

#container output pre {
  margin: 0;
}

/* Command line */

.input-line {
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: stretch;
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-align: stretch;
  display: box;
  box-orient: horizontal;
  box-align: stretch;
  clear: both;
}

.input-line>div:nth-child(2) {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
}

.user {
  color: #42F44B;
  /* 
  teal #33CCCC 
  yellow #EDED65
  pink #FFCCFF
  green #42F44B
  orange #FF9966
  unoffensive green #82FFA9
  yellow-orange #FFBF00
  lime #CCFF99
  */
}

.prompt {
  white-space: nowrap;
  color: #42F44B;
  margin-right: 7px;
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-box-pack: center;
  -moz-box-orient: vertical;
  display: box;
  box-pack: center;
  box-orient: vertical;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cmdline {
  outline: none;
  background-color: transparent;
  margin: 0;
  width: 100%;
  font: inherit;
  border: none;
  color: inherit;
}

/* Output */

.ls-files {
  height: 70px;
  line-height: 35px;
  -webkit-column-width: 100px;
  -moz-column-width: 100px;
  -o-column-width: 100px;
  column-width: 100px;
  margin-bottom: 10px;
}

.projects-card {
  margin: 10px 10% 10px 10px;
  width: 100%;
  background-color: #eee8d5;
  padding: 15px 15px 15px 0px;
  border-radius: 15px;
  overflow-x: auto;
}

.hintbox {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.hintboxtext {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 140%;
  margin-left: -70px;
  opacity: 0;
  transition: opacity 0.3s;
}

.hintbox:hover .hintboxtext {
  visibility: visible;
  opacity: 1;
}