/* BASIC STYLES HERE */
:root {
  --primary: #3700b3;
  --secondary: #03dac6;
  --variant: #bb86fe;

}

label {
  display: block;
}

::placeholder {
  color: lightgray;
  opacity: 1;
}

#home-content {
  height: 100dvh;
}

#jot-list {
  height: auto;
}

#newJotTitleFormInput {
  background-color: transparent;
  color: #aeb0c5;
  text-align: center;
  border: 0;
}

#editor {
  height: 100dvh;
}

/* #jotColor {
  appearance: none;
  background-color: transparent;
  height: 24px;
  width: 24px;
  cursor: pointer;
  border: 1px #aeb0c5 solid;

  border-radius: 10%;
  padding: 0;
} */

#active-jot-editor {
  margin: 25% auto;
  padding: 20px;
  width: 60%;
  opacity: 80%;
}

#editor-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

#body-card {
  background-color: transparent;
  border-radius: 20px;
  border: 2px whitesmoke solid;
}

textarea {
  background-color: transparent;
  color: whitesmoke;

}