@import url("https://fonts.googleapis.com/css2?family=Megrim&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "roboto";
}

.root-container {
  background-color: #52616b;
  min-height: 100vh;
  position: relative;
  padding: 150px 50px;
  width: 100%;
}

/* Header */

.title {
  font-family: "Megrim", cursive;
  color: #f0f5f9;
}

.header {
  background-color: #1e2022;
  padding: 1.5rem 2rem;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.562);
}

/* Footer */

.footer {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  padding: 1rem 2rem;
  color: #c9d6df;
}

/* Note */

.note-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.note-container,
.input-container {
  color: #1e2022;
  background-color: #c9d6df;
  display: inline-block;
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.205);
}

.note-container {
  padding-bottom: 50px;
}

.input-container {
  margin-bottom: 50px;
  margin-left: 30%;
  width: 40%;
}

.input-box {
  background-color: transparent;
  border: none;
  padding-left: 5px;
  width: 100%;
}

.Iheading {
  height: 30px;
  font-size: large;
  font-weight: 500;
}

.Icontent {
  font-size: 1rem;
  margin-bottom: 30px;
  resize: none;
}

.Iheading::placeholder {
  color: #34383b;
}

.input-box:hover {
  outline: none;
}

.input-box:focus {
  outline: none;
  border: none;
}

.base-box {
  font-size: 17px;
  cursor: text;
  text-align: left;
  color: #52616b;
  background-color: transparent;
  border: none;
  width: 100%;
}

.note-heading:focus {
  outline: none;
  border: none;
}
