*{
    padding: 0;
    margin: 0;
    box-shadow: 0;
}
body{
    background: linear-gradient(
        90deg, 
        #f8e8f7, #f9f2dc
    );
}
.navBar{
    height: 3.5rem;
    width: 100%;
    background: linear-gradient(
        90deg, 
        #f8e8f7, #f9f2dc
    );
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    box-shadow: 0.5px 1px 10px gray;
}
.logo{
    height: 45px;
    width: 45px;
    background-image: url("done4.png");
    background-size: contain;
    margin-left: 1.4rem;
    background-repeat: no-repeat;
}
.navTxt{
    font-family: "Niconne", cursive;
    font-style: normal;
    font-size: 1.9rem;
    font-weight: 600;
    padding-top: 17px;
    color: rgb(43, 184, 200);
    margin-right: 2rem;
}
.navTxt1{
    font-family: "Niconne", cursive;
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 600;
}
#textPart{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}
.card{
    margin: 1rem;
    border: 2px solid rgb(155, 153, 153);
}
.textArea{
    resize: none;
}
.footer{
    height: 4.7rem;
    width: 97.5%;
    background-color: transparent;
    margin: 0.5rem auto;
}
.icons{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 2px auto;
}
.icons a{
    text-decoration: none;
    color: black;
}
.circle{
    height: 30px;
    width: 30px;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-left: 7px;
    margin-top: 3px;
    cursor: pointer;
    transition: 0.5s;
}
.circle:hover{
    background-color: rgb(70, 122, 128);
    color: wheat;
}
.log{
    font-size: 1.2rem;
}
.txtFoot{
    margin: 2px auto;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    font-family: "Niconne", cursive;
}