body {
    margin: 0px;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background-color: salmon;
    font-family: cursive;
}

.container {
    background-color: lightpink;
    width: 400px;    
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);

}

.container h2{
    text-align: center;
}

.textarea {
    width: 100%;
    resize: none;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 18px;
    font-family: sans-serif;
    border: solid 2px darkgrey;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    padding: 0px 5px;
}

.counter-container p {
    color: grey;
    font-size: 18px;
}

.total-counter {
    color: slateblue;
}

.remaining-counter {
    color: orangered;
}