* {
  padding: 0;
  margin: 0;
  font-size: 18px;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: rgb(255, 255, 255);
}
.notes-container{
  display: flex;
  flex-wrap: wrap;
  padding: 70px 40px;
  margin-top: 50px;
  display: flex;
  gap: 28px;
}
button {
  position: absolute;
  text-align: center;
  width: 100%;
  max-width: 140px;
  font-weight: 600;
  font-size: 20px;
  top: 40px;
  right: 30px;
  background-color: rgb(56, 121, 19);
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 0px 1px 4px 0px grey;
  color: white;
  cursor: pointer;
}
.notes-box {
  width: 100%;
  height: 400px;
  max-width: 350px;
  background-color: #f0e5cc;
  border-radius: 8px;
  box-shadow: 0px 1px 8px 0px rgb(199, 198, 198);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.notes-h {
  padding: 10px 18px;
  background: #151615a2;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  color: white;
  align-items: center;
  position: absolute;
}
.delete {
  cursor: pointer;
}
.notes-list {
  padding: 60px 30px;
  box-sizing: border-box;
  font-size: 18px;
  width: 100%;
  height: 100%;
  outline: none;
  resize: none;
  line-height: 29px;
  background-color: rgb(212, 248, 212);
  border: none;
}
.notes-list:focus{
  border: none;
}
