body{
    margin: 0;
    background-color: #3f3919;
    display: flex;
    flex-wrap: wrap;
    
}
.wrapper{
    display: grid;
    grid-template-columns: 200px 200px 200px;
    padding: 10px;
    
}
.header{
    background-color: #f0c60c;
    display: flex;
    flex-direction: row;
    width: 100%;
    
}
.icon{
    margin: 15px;
}
.btn-div{
    /* position: absolute; */
    
    border: none;
    border-radius: 3px;
    /* padding: 0.5rem 1rem; */
    width: 100%;
    /* cursor: pointer; */
    /* border: solid; */
    height: 100px;
}
.newdiv{
    background-color: #f0c60c;
    color: black;
    padding: 10px;
    border-radius: 50%;
    border-radius: 50%;
   
    font-size: 18px;
   
    
}
.btn-add{
    border-radius: 50%;
    padding: 10px;
    margin: 10px;
    font-size: 18px;
    position: fixed;
    right: 0;
    z-index: 11;
}
 button{
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0c60c;

}

 .content{
     position: relative;
    border: solid;
 }
 .note{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
    height: 200px;
    width: 300px;
    
 }
 .operation{
     display: flex;
    position: absolute;
    right: 0;
    margin-right: 10px;
    z-index: 10;
    
}
 .main{
     /* margin: 10px; */
     height: 200px;
     width: 300px;
     background-color: white;
     /* position: relative; */
     /* top: 0; */
     /* display: flex; flex-direction: row; */
     overflow-wrap: break-word;
     overflow-x: scroll;
     overflow-y: scroll;
     font-size: 20px;
     padding-left: 10px;
     padding-top: 40px;
     
                 
     
    }
    
    textarea{
    /* display: flex; flex-direction: column; */
    width: 300px;
    height: 200px;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 20px;
    padding-left: 10px;
    padding-top: 40px;
    outline: none;
    border: none;
    resize: none;
    
    
}

.edit{
    background-color: rgb(29, 174, 29);
    color: white;
    padding: 10px;
    border-radius: 50%;
    /* position: absolute;
    right: 0; */
}
.edit:hover{
    background-color: white;
    color: rgb(29, 174, 29);
    /* filter: drop-shadow(0px 10px 8px rgb(219, 218, 218)); */
}
.delete{
    background-color: rgb(233, 19, 19);
    color: white;
    padding: 10px;
    border-radius: 50%;
}
.delete:hover{
    background-color: white;
    color: rgb(233, 19, 19);
    /* filter: drop-shadow(0px 10px 8px rgb(219, 218, 218)); */
}
.btn-add:hover{
    
    color: #000;
    transform:scale(1.1,1.1);
    /* filter: drop-shadow(0px 10px 8px rgb(219, 218, 218)); */
}
.hidden{
    display: none;
}
