* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: #131932;
  display: grid;
  place-items: center;
  font-family: Poppins;
}

main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

form {
  background-color: #eee;
  width: 200px;
  padding: 8px;
  margin: 12px;
  display: flex;
  justify-content: space-between;
  border-radius: 24px;
}

form input,
form button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 28px;
  cursor: pointer;
}

form input::-webkit-color-swatch-wrapper {
  padding: 0;
}

form input::-webkit-color-swatch {
  border-radius: 50%;
}

#list textarea {
  all: unset;
  color: #d6d6d6;
}

#list .note {
  background-color: #333;
  width: max-content;
  border-top: 30px solid #e8ee2a;
  border-radius: 10px;
  box-shadow: 0 20px 58px #000;
  padding: 10px;
  position: absolute;
  top: 65px;
  left: 50px;
}

#list .note span {
  position: absolute;
  bottom: 100%;
  right: 0;
  height: 30px;
  font-family: cursive;
  font-size: large;
  padding-right: 10px;
  cursor: pointer;
}
