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

body {
  margin: 0;
  background-color: #cd3700;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: white;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

*:focus {
  outline: none;
}

#app {
  margin-top: 60px;
  width: 80%;
  max-width: 522px;
}

#addnote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 6.4px 15px;
  font-size: 17px;
  border-radius: 4px;
  color: #cd3700;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  line-height: 1.5715;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  background: black;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.25), 0 0 0 1px rgba(10, 10, 10, 0.02);
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.25), 0 0 0 1px rgba(10, 10, 10, 0.02);
  margin-bottom: 40px;
}

#icon1 {
  width: 27.2px;
  height: 27.2px;
}

.image-wrapper {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#btn-text {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}

textarea {
  margin: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 6px 11px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 22px;
  line-height: 1.5715;
  background-color: rgba(255, 255, 255, 0);
  background-image: none;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: visible;
  resize: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

textarea::-moz-selection {
  background-color: black;
  color: #cd3700;
}

textarea::selection {
  background-color: black;
  color: #cd3700;
}

#textbox {
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
  border-radius: 6px;
  border: 5px solid black;
}

h1 {
  color: black;
  font-size: 30px;
  margin-bottom: 30px;
}

.note {
  background-color: black;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.25), 0 0 0 1px rgba(10, 10, 10, 0.02);
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.25), 0 0 0 1px rgba(10, 10, 10, 0.02);
  border-radius: 6px;
  color: #cd3700;
  font-size: 24px;
  font-weight: 400;
  padding: 16px;
  margin-bottom: 20px;
}

.new-note {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}

.note2 {
  font-size: 50px;
}

@-webkit-keyframes slidein {
  from {
    max-height: 0px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    max-height: 1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slidein {
  from {
    max-height: 0px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    max-height: 1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

* {
  scrollbar-width: thin;
  /* "auto" or "thin"  */
  scrollbar-color: rgba(10, 10, 10, 0.35) rgba(10, 10, 10, 0.02);
  /* scroll thumb & track */
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: rgba(10, 10, 10, 0);
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(10, 10, 10, 0.35);
  border-radius: 6px;
}
/*# sourceMappingURL=main.css.map */