body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: salmon;
    
}
.container{
    width: 400px;
    background-color: aquamarine;
    padding: 20px;
    margin: 5px;
    border-radius: 0.5em;
    box-shadow: 0 4px 8px rgba(0,0,0,.3);
}
.textarea{
    width: 100%;
    height: 100px;
    resize: none;
    font-size: 18px;
   font-family: 'Times New Roman', Times, serif;
   padding: 10px;
   box-sizing: border-box;
   border: solid 2px darkgray;   

}
.counter-container{
    display: flex;
    justify-content:  space-between;
    padding: 0 5px;
    color: grey;
}
.total-counter{
    color: slateblue;
}
.remaining-counter{
    color: rgb(237, 6, 6);
}