*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[note-container] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

[note] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

[note]>* {
  outline: none;
  width: 100%;
}

[add-note-btn] {
  transition: 160ms ease-in-out;
  cursor: pointer;
  font-size: 3rem;
}

[add-note-btn]:hover {
  color: rgb(192, 184, 184);
}

[save-note-btn],
[delete-note-btn] {
  font-size: 1.2rem;
  height: 2.2rem;
}