body{
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: cursive;
    background: url("https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80");
    background-size: cover;
}
.maincontainer{
    background-color: rgba(23, 94, 142, 0.517);
    border-radius: 15px;
    width: 400px;
    padding: 20px;
    margin: 6px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.471);

}
#textarea{
    resize: vertical;
    width: 100%;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    text-align: justify;
    box-sizing: border-box;
    border: solid 2px rgba(155, 128, 128, 0.407);
}
.countercontainer{
    display: flex;
    justify-content: space-around;

    padding: 0 6px;
}
.countercontainer p{
    font-size: 18px;
}
.total-counter{
    color: rgb(205, 254, 9);
}
.total-remaining{
    color: rgba(234, 224, 232, 0.886);
}