* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    

}
body{
    background-color: rgb(133, 217, 220);
}
h3{
    text-align: center;
    justify-content: center;
    height: 20px;
    font-size: 30px;
    background-size: 30px;
    display: flex;
    grid-auto-flow: 3px;
    
}
h3 img{
    height:45px ;
    width:40px ;
    
}

.main {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(133, 217, 220);
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
    

}

.note {
    width: 300px;
    height: 300px;
    margin: 50px;
    background-color: white;
    border-radius: 5px;

}

.tool {
    height: 50px;
    width: 100%;
    background-color: rgb(86, 143, 241);
    display: flex;
    color: white;
    justify-content: end;
    border-radius: 5px;
    align-items: center;




}

.tool i {

    background-color: #dfee86;
    color: black;
    padding: 8px;
    margin: 3px;

    border-radius: 50%;
    cursor: pointer;
}

.note textarea {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 5px;
    font-size: 20px;
    resize: none;
    background
}

.btn {
    position: fixed;
    cursor: pointer;
    right: 10px;
    top: 10px;
    background-color: rgb(126, 121, 121);
    color: white;
    height: 40px;
    width: 90px;
    border: 0;
    outline: 0;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;


}