
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Varela+Round&display=swap');

*{
    margin: 0;padding: 0;box-sizing: border-box;
}

.my-note-main{
    height: 100vh;
    width: 100%;
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;

    
}
.my-note-main .my-note-child{
    height: 460px;
    width: 60%;
    /* border: 1px solid rgb(94, 12, 94); */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* flex-wrap: wrap; */
}
.my-note-child .my-note-box{
    width: 200px;
    height: 170px;
    /* border: 1px solid rgb(94, 12, 94); */
    background-color: rgb(143, 193, 209);
    text-align: center;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 19px;
    transition: ease-in-out 0.2s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    color: rgb(0, 0, 0);

}
.my-note-child .my-note-box:hover{
   transform: scale(105%);
   
}
.my-note-box i{
    font-size: 5em;
}
.my-note-box h3{
    font-size: 2em;
    text-transform: uppercase;
    font-family: "Varela Round", sans-serif;
}
.note-name input{
    height: 40px;
    width: 60%;
    padding: 10px 15px;
    font-size: 15px;
    margin-top: 30px;
    border: none;
    border-radius: 9px;
    border-left: 10px orange solid;
    background-color: #ebebeb81;
   

}
.note-name button{
height: 36px;
width: 150px;
background-color: lavender;
font-size: 16px;
border: none;
border-radius: 10px;
cursor: pointer;
transition: ease-in-out 0.2s;
}
.note-name button:hover{
    background-color: rgb(188, 188, 218);
    color: white;
}

.note-text{
   margin-top: -280px;
    height: 68%;
    width: 100%;
    /* border: 3px rgb(3, 2, 7) solid; */

}
.note-text-name{
    margin-top: -14px;
    height: 90px;
    width: 100%;
    background-color: rgba(143, 186, 201, 0.548);
    font-size: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}
.note-text-name h1{
    margin: 3px auto;
    font-size: 7em;
    color: rgb(31, 58, 139);
}

textarea{
    height: 770px;
    width: 100%;
    font-size: 20px;
    background-color: #dddddd;
    outline: none;
    padding: 5px 10px;
}
.text-btn{
    margin-top: -10px;
    height: 70px;
    width: 100%;
    background-color: rgb(237, 237, 247);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* flex-wrap: wrap; */
}
.text-btn button{
    height: 35px;
    width: 150px;
    border: none;
    background-color: rgb(214, 214, 247);
    border-radius: 17px;
    font-size: 13px;
    color: black;
    cursor: pointer;
    box-shadow: rgba(148, 148, 187, 0.308) 0px 7px 29px 0px;
    transition: ease-out 0.3s;


}

.back{
    height: 30px;
    width: 30px ;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px; cursor: pointer;
    position: absolute;
    top: 40px;
    left: 10px;
    transition: ease 0.3s;

}

.back i{
    font-size: 21px;
}
.back:hover{
   transform: scale(106%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.336);

}
.back i:hover{
    font-size: 22px;
}
.text-btn button:hover{
    
    box-shadow: rgba(98, 98, 129, 0.308) 0px 7px 29px 0px;
    background-color: rgb(148, 148, 187);
    color: white;
}
@media (max-width:1025px) {
    .my-note-main .my-note-child{
        width: 90%;
    }
  
}
@media (max-width:769px) {
    .note-text-name{
        font-size: 7px;
    }
 

}
@media (max-width:600px) {
    textarea{
        height: 84vh;
    }
    .note-name input {
        width: 88%;
    }
    .my-note-main .my-note-child{
        width: 90%;
        height: 500px;
        
        flex-direction: column;
    }
    .my-note-child .my-note-box{
        width: 90%;
        height: 100px;
        font-size: 7px;
    }
    .my-note-child .my-note-box:hover{
        width: 90%;
        height: 100px;
    }
    .note-text-name{
        font-size: 4px;
    }
    .note-text-name h1{
        margin-top: 20px;
    }
    #pen{
        height: 30px;
        width: 30px;
        position: absolute;
        bottom: 18px;
        right: 20px;
        /* background-color: antiquewhite; */
    }
    textarea{
        font-size: 18px;
    }
}