* {
    padding: 0px;
    margin: 0px;
    font-family: Sans-serif;
}

#search, #stats {
  height: calc(100vh - 5px);
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: calc(20vw - 20px);
    background: #f9f9f9;
}

#stats {
    width: calc(80vw - 20px);
    position: absolute;
    left: 20vw;
    background: white;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 0px;
}

h1 {
  text-align: center;
  position: sticky;
  padding-bottom: 20px;
  padding-top: 20px;
}

textarea#searchbox {
  background: 0;
  border: 0;
  outline: 0;
  font-family: sans-serif;
  height: 20px;
  color: black;
  resize: none;
  width: 100%;
  font-size: 18px;
  top: 5%;
  position: sticky;
}

.searchResult, .noSearches {
    background: #eaeaea;
    width: calc(100% - 10px);
    height: 24px;
    font-size: 20px;
    margin: 10px 0px;
    padding: 5px;
}

.searchResult:hover {
  background: #dadada;
}

#results ul {
    list-style-type: none;
    overflow: scroll;
    height: 92vh;
    cursor: pointer;
}
