File size: 722 Bytes
dc71762
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    padding: 30px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

textarea, button {
    width: 300px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
}

textarea {
    height: 100px;
    resize: none;
}

button {
    color: #fff;
    background-color: #007BFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.result {
    font-size: 1.5em;
}