*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    width: 100%;
    height: 100%;
    /* background-color: rgb(248,107,87); */
    background: linear-gradient(167deg, rgba(248, 107, 87, 1) 0%, rgba(200, 80, 63, 1) 50%, rgba(193, 69, 51, 1) 100%);
   
}

.wrapper{
   width: 100wh;
   height: 100vh;
   display: flex;
   flex-direction: column;
   margin: 2rem 3rem;
   align-items: center;
   justify-content: flex-start;
   text-align: center;
   
}


header{
    display: flex;
    align-items: center;
    justify-content: center;
}
header h1{
    color: rgb(255, 255, 255);
}
header p{
    color: rgb(255, 183, 175);
}

.notesContainer{
    width: 100%;
    display: grid;
    align-items: flex-start;
    justify-content: center;
    grid-template-columns: 20% 70%;
    gap: 20px;
    margin-top: 2rem;
    height: 70vh;
    /* background-color: blue; */
}

.asideContainer{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #1A1A1A;
}

.new-btn{
    width: 100%;
    height: 3rem;
    background-color: rgb(232,186,171);
    color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 1rem;
}



.allNotes{
   display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.allNotes li{
    background-color:  #262626;
    width: 90%;
    margin-left: 10px;
    list-style: none;
    padding: 10px;
    color: whitesmoke;
    font-weight: bold;
    cursor: pointer;
}

.singleNoteContainer{
    width: 100%;
    height: 90%;
    background-color: #262626;
    position: relative;
}
.singleNoteContainer img{
    position: absolute;
   bottom: 10px;
    right: 1px;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.singleNote{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-top: 2rem;
}

.singleNote input , .singleNote textarea{
    width: 100%;
    padding: 10px;
    border: none;
    background-color: transparent;
    color: whitesmoke;
}

.singleNote input {
    height: 4rem;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 700;
}

.singleNote textarea{
    margin-top: 0.8rem;
    width: 100%;
    height: 500px;
    overflow: auto;
    resize: none;
}

.singleNote input:focus , .singleNote textarea:focus{
    outline: none;
}

#save-note , #delete-btn{
    padding: 10px 20px;
    font-weight: bold;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}
#save-note{
    background-color: rgb(112, 149, 61);
}

#delete-btn{
    margin-top: 10px;
    background-color: rgb(162,33,13);
}
#delete-btn:hover{
    background-color: rgb(169, 58, 58);
}

#save-note:hover{
    background-color: rgb(104, 142, 51);
}

