.notes-container {    
  background-color: rgb(255, 196, 196);
}

.notes-container h2 {
  font-family: "Michroma", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
}
.note-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

#noteText {
  height: 4rem;
  width: 80%;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1rem;
  resize: none;
}

#addNoteBtn {
  width: 80%;
  background-color: rgb(0,0,255);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  margin: 1rem 0;
  font-family: "Michroma", sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#addNoteBtn:hover,
.delete-note:hover {
  background-color: rgb(0,0,230);
  transform: translatey(-2px);
  transition: all 0.1s ease-in-out;
}

.notes-list {
  width: 90%;
  height: 420px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  overflow-y: auto; 
  margin-top: 1rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-start;
}
.notes-list #default-note{
  font-size: 1.5rem;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  margin: 0.5rem;
}
.notes-list .note-span{
  font-size: 3rem;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
}
.note-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin: 0.5rem 0rem;
  box-sizing: border-box;
  border: 1px solid grey;;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
}

.note-card p {
  font-size: 1.2rem;
  word-break: break-word;
  flex: 1;
  margin-right: 1rem;
}

.delete-note {
  background-color: rgb(255, 50, 0);
  border-radius: 0.5rem;
  color: #fff;
  border: none;
  outline: none;
  padding: 0.5rem;
}

.delete-note:hover {
  background-color: 
  rgb(255, 0, 0);
}

@media screen and (max-width:485px){
  .notes-container{
    width: 95%;
    height: 540px;
    max-width: 380px;
    max-height: 540px;
  }
}