body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    display: grid; 
    place-items: center; 
    height: 20vh;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative
}

textarea {
    height: 170px;
    margin-bottom: 10px;
    padding: 10px;
    border: 3px solid black;
    border-radius: 12px;
    font-size: 16px;
    resize: vertical;
}
.text-limit {
    position: absolute;
    bottom: 35px;
    right: 45px;
    color: #555;
}
#textarea:focus {
  outline: none;        
  border-color: inherit;
}
