html {
  box-sizing: border-box;
  font-size: 62.5%;
}
*,
*::after,
*::before {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}
body {
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: aliceblue;
}
.container {
  margin: 10rem auto 0 auto;
  width: 120rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title {
  margin-bottom: 5rem;
  font-size: 4rem;
  border-bottom: 0.7rem solid black;
  border-radius: 1.5rem;
}
.inputPart {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.input {
  width: 40rem;
  padding: 1.5rem 2rem;
  border: 2px dashed black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2rem;
  background-color: #fff;
  margin-bottom: 1rem;
}
.theInput {
  border: none;
  outline: none;
  font-size: 2rem;
  padding: 1rem;
  border-radius: 2rem;
}
.plusWrapper,
.eraseWrapper {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.plusWrapper {
  border: 2px solid rgb(39, 156, 195);
  color: rgb(39, 156, 195);
}
.plusWrapper:hover {
  color: #fff;
  background-color: rgb(39, 156, 195);
}
.eraseWrapper {
  border: 2px solid rgb(227, 16, 16);
  color: rgb(227, 16, 16);
}
.eraseWrapper:hover {
  color: #fff;
  background-color: rgb(227, 16, 16);
}
.colors {
  align-self: flex-start;
  display: flex;
}
.color {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid black;
  margin-right: 1rem;
  cursor: pointer;
}









.notesWrapper {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}
.note {
    width: 35rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    border: 2px solid black;
    font-size: 2rem;
}