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