body{
    background:black ;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}
.box {
    display: flex;
    align-items: center;
    background-color: bisque;
    width: 0px;
    height: 0px;
    border-radius: 30px;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.box.active{
    width: 300px;
    height: 300px;
    transition-delay: 1s;
}

.box::before{
    content: '';
    width: 30px;
    height: 30px;
    background: bisque;
    bottom: -10px;
    
    position: absolute;
    transform: rotate(45deg);
    /* transition: 2s; */
}
.text{
    font-size: 20px;
    text-align: center;
    
    width: 300px;
    height: 300px;
    background: bisque ;
    word-wrap: break-word;
    /* z-index: 999; */
    opacity: 0;
    transition: 0.5s;
    border-radius: 10%;
    display: grid;
    /* transform: scale(0); */

}
.text.active{
    opacity: 1;
    transition-delay: 1s;
     /* transform: scale(0); */
}
/* .box .input input{
    min-width: 300px;
    min-height: 300px;
    color:#202020 ;

} */
.box.active {
opacity: 1;
transition-delay: 0.5s;
transform: scale(1);

}
.save{
    position: absolute;
    z-index: 999;
    margin-left: 12px;
    margin-top: 180px;
    align-items: center;
    opacity: 0;
    background: blue;
    width: 60px;
    
}
.save:hover{
    background: white;
    transition-duration: 0.2s;
}
.save.active{
    opacity: 1;
    transition-delay: .8s;
}
.view{
    position: absolute;
    display: block;
    
    z-index: 999;
    margin-left: 15px;
    margin-top: 280px;
    align-items: center;
    opacity: 0;
    background: blue;
    width: 60px;
    
}
.view:hover{
    background: none;
    transition-duration: .2s;
}
.view.active{
    opacity: 1;
    transition-delay: .8s;
}

.del{
    position: absolute;
    z-index: 999;
    margin-left: 15px;
    margin-top: 230px;
    align-items: center;
    opacity: 0;
    background: blue;
    width: 60px;
    
}
.del:hover{
    background: none;
    transition-duration: .2s;
}
.del.active{
    opacity: 1;
    transition-delay: .8s;
}
.cntnt{
    display: none;
    overflow: scroll;
    word-break: break-all;
    background-color:#fff;
    text-align: center;
    width: 600px;
    height: 60px;
    margin-top: 600px;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 4px;
    box-shadow: 0 0 15px 1px rgba(163,163,163,0.5);
    
}
/* a{ 
    
    color:#5f9341;
} */
.togglebtn{
    height: 60px;
    width: 60px;
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: green;
    border-radius: 50%;
    bottom: -30px;
    transition: 0.5s;
}
.togglebtn::before{
    content: '+';
    font-size: 3em;
    font-weight: bolder;
}
.box.active .togglebtn{
    bottom: -80px;
    transform:rotate(135deg) ;
}