body {
  font-family:monospace;
}
.codesBox {
  width: 400px;
  padding: 25px;
  border: 1px solid #222;
  margin: 30px;
  flex: 1 1 400px;
  color: #222;
  background:white;
}
#results, #pinned {
  padding: 25px;
  margin: 30px;
}
.resultsBox, .pinnedBox{
  border: 1px solid #222;
  background:white;
}
  .list {
    font-size:1.2em;
    display:flex;
    flex-wrap: wrap;
  }
  .list span {
    margin-bottom:10px;
  }
  button {
    padding:5px;
    background:white;
    border:1px solid #222;
    transition:background 0.5s, color 0.5s;
  }
  button:hover {
    background:#222;
    color:white;
    transition:background 0.5s, color 0.5s;
  }
  input {
    padding: 5px;
    padding-left:15px;
    border-width:1px 1px 5px 1px;
    border-style:solid;
    border-color: #222;
    box-sizing:border-box;
    width:100%;
    height:50px;
    margin-bottom:10px;
    font-size:22px;
    font-family:monospace;
  }
  input::placeholder {
    font-family:monospace;
    opacity:0.7;
  }
  #codes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #input, #pref {
    padding:25px;
    overflow:auto;
  }
  .desc, .descDisplay {
    flex-basis:70%;
  }
  .code, .codeDisplay {
    min-width:100px;
    max-width:300px;
    flex-basis:30%;
  }
  #results .codeDisplay, #pinned .codeDisplay {
    min-width:100px;
    max-width:300px;
    flex-basis: 30%;

  }
  #results .pinBut, #pinned .pinBut {
    margin-right:10px;
  }
  #pref {
    float: right;
  }
.pinnedButton {
  background: #77dd77;
  color:white;
}
