@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}
html{
    scroll-behavior: smooth;
    font-size: 62.5%; 
    /* now 10px = 1rem  */
}
:root{
    --col : #fff;
}
body{
    background-color: #f3f3f3;
    display: flex;
    flex-wrap:wrap ;
}
nav{
    background-color:#f1c40f;
    width: 100vw;
    height: 5rem;
    box-shadow: 0px 10px 160px rgb(212, 212, 212);
}
.logo {
    width: 95%;
    height: 80%;   
}

#title{
    padding: 0.8rem;
    font-size: 2rem;
}
.note{
    height: 15rem;
    width: 25rem;
    /* background-color: aqua;s */
    overflow-y: scroll;
    margin: 2rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 10px 160px rgb(212, 212, 212);
}
.options{
    width: 95%;
}

.t_area{
    padding: 0.5rem 0.2rem;
    height: 13rem;
    width: 22rem;
    border: none;
    outline: none;
    box-shadow: none;
    resize: none;
    font-weight: 500;
    text-decoration: none;
    white-space: pre-wrap;
    overflow: hidden;

}
.m_div{
    width: 22rem;
    margin-top: 3rem;
    overflow-wrap: break-word;
    font-weight: 100;
    /* font-size: 0.9rem; */
    white-space: pre-wrap;
}
.create{
    height: auto;
    width: 100vw;
    float: right;
    margin: 0.5rem 0.5rem ;
}
#add_nt{
    width: 10rem;
    float: right;
    padding: 0.2rem;
    text-transform: capitalize;
    font-weight: 900;
    color: #fff;
    background-color:#f1c40f;
    border: none;
    border-radius: 1rem;
    margin: 1rem 3rem 0rem 0rem;
    box-shadow: 0px 10px 16px rgb(231, 231, 231);
    border: 0.5px solid #f1c40f;
    cursor: pointer;
}
#add_nt:hover{
    background-color: #f3f3f3;
    color: #f1c40f;
    border: 0.5px solid #f1c40f;
}
.edit , .delete{
    height: 2.5rem;
    width: 2.5rem;
    float: right;
    padding: 0.2rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}
.edit{
    background-color:rgb(0, 226, 0);
    color: #fff;
}
.delete{
    background-color:rgb(255, 42, 42);
    color: #fff;
}
.edit:hover{
    background-color: #fff;
    color:rgb(0, 226, 0);
    border: 0.5px solid rgb(0, 226, 0);
} 
.delete:hover{
    background-color: #fff;
    color: red;
    border: 0.5px solid red;
}
.hidden{
    display: none;
}
