*{
    font-family: helvetica;
}
.container{
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    align-items: center;
    height: 100vh;
}
.field{
    width: 100%;
    margin-bottom: 1rem;
    font-size: .9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
label{
   font-size:  .9rem;
}
textarea{
    width: 100%;
    font-size: 1.3rem;
    padding: .5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.counter{
    font-size: .8rem;
    color: #555;
    margin-bottom: 1rem;
}
button{
    background-color: #4285f5;
    color: #fff;
    font-size: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: .3s;
}
button:hover{
    background-color: #0069d9;
    
}