
body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    color: #333;
}

div {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

textarea {
    width: 300px;
    height: 150px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: none;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: border-color 0.3s;
}

textarea:focus {
    border-color: #3b82f6;
}

#count {
    margin-top: 15px;
    font-size: 1rem;
    color: #2563eb;
    font-weight: 500;
}

