html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
}

body {
  background: #f3f5f6;
  text-align: center;
  color: #1C90F3;
}

h1 {
  /*text-transform: uppercase;*/
}

h3 {
  color: #666;
}

.github {
  width: 50px;
}

#box {
  width: 400px;
  height: 300px;
  display: inline-block;
  background: #222;
  color: #fff;
  transition: all .3s;
  margin-top: 150px;
  overflow: auto;
  text-align: left;
  padding: 10px 0;
  box-sizing: border-box;
  border: 5px dotted #ff0000;
}

#box.entered {
  box-shadow: inset 0 0 10px #aaa;
}

#box .words {
  padding: 0 10px;
  font-size: 1.5rem;
  color: #fff
}

#box code {
  background: #1C90F3;
  white-space: nowrap;
  color: white;
  display: inline-block;
  padding: 0 3px;
  line-height: 1.4;
  border-radius: 3px;
}

#box .file-name {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  max-width: 400px;
  padding: 0 10px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#box .file-name:before {
  content: '\1F4CE';
  display: inline-block;
  margin-right: 5px;
}
