* {
  margin: 0;
  padding: 0;
}

body{
    background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(42, 123, 155, 1) 100%);
    overflow-x: hidden;
}

.wrapper {
    margin: 0 auto;
    
}

li {
    list-style: none;
    margin: 1px 0;
    padding: 7px;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
}

h1 {
    color: black;
    text-align: center;
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    padding: 0 auto;

}

#add {
    width: 30px;
    height: 30px;
    background: rgba(0, 255, 255, 0.4);
    font-size: 20px;
    color: white;
    border: none;
    transition: background 0.3s;
}

.container{
display: flex;
width: 200px;
margin: 0 auto;
justify-content: space-around;


}

.todoKeep {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: auto auto auto;
}

#time{
    background: black;
    color: white;
    width: 50px;
    text-align: center;
    margin-top: 6px;
    border-radius: 20px;
}


.container p{
    font-size: 25px;
}

.all {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  padding: 0 10px;
}

.task-text {
   margin-bottom: 5px;
}

.timestamp-text {
   font-size: 0.9em;
   color: gray;
   font-weight: 400; 
}

.note-title-text{
    font-size: 30px;
}

#note_title, #text_item, #add{
     border-radius: 15px;
     border: none; 
}

#note_title, #text_item {
    height: 30px;
    background: rgba(0, 255, 255, 0.4);
}

a{
    font-size: 30px;
    padding: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0);
   -webkit-text-stroke: 0.5px black;
}

.btn , .btn1{
  background: linear-gradient(0deg,rgba(42, 123, 155, 0.5) 0%, rgba(87, 199, 133, 0.5) 50%, rgba(42, 123, 155, 0.5) 100%);
  height: 50px;
  width: 50px;
  margin-left: 10px;
  margin-top: 10px;
  font-size: 17px;
  border: none;
  border-radius: 50px;
}

.btn{
    color: white;
}

.dark{
  background: rgba(0, 0, 0, 0.5);
  color: white
}
.light{
  background: rgba(255, 255, 255, 0.5);
  color: black;
}
