body {
  background: rgb(184, 109, 227);
}

.daddy-box{
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  align-items: center;
  text-shadow: 0px 0px 5px white;
}

#editor{
  font-size: 20px;
  line-height: 26px;
  font-family: Garamond, serif;
  text-align: left;
  border:1px solid #ccc;
  border-radius: 5px;
  background: #f5f3ed;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
  padding:15px;
  margin: 10px;
  margin-top: 20px;
  width:300px;
  min-height:100px;
  max-height:50vh;
  overflow: scroll;
}

#saveBtn {
  width: 50px;
}

.mommy-box{
  display: flex;
  flex-direction: row;
  top: 30px;
  left: 40px;
  position: absolute;
}

.lilbutton {
  border: 1px solid #222;
  width: 40px;
  height: 30px;
  line-height: 34px;
  text-align: center;
  color: #111;
}

.lilbutton:hover {
  cursor: pointer;
  background-color: rgb(133, 76, 166);
}

.lilbutton--left {
  border-radius: 0px 0px 0px 20px;
  border-right-style: none;
}

.lilbutton--right {
  border-radius: 0px 20px 0px 0px;
  border-left-style: none;
}

