body {
  word-break: break-word;
  background: #eef6ff;
  overflow: -moz-scrollbars-none; 
}

.hidden {
  display: none;
}

#container {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  flex-wrap: wrap;
  justify-content: center;
}

.note {
  background:white;
  width: 300px;
  border: 1px solid #ccc;
  margin: 8px;
  /*height: 40vh;*/
  min-height:200px;
  display: grid;
  overflow: scroll;
  padding: 8px;
  position:relative;
}

#addnote {
  width: 100vw;
  font-size: 2rem;
  display: block;
  align-self: flex-end;
}

textarea {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 100;
}

.note-id-box{
  position: absolute;
  bottom: 0;
  right:0;
  padding: 2px 4px;
  color: #aaa;
  font-size: .750rem;
}

::-webkit-scrollbar {
display: none;
}


