File size: 1,090 Bytes
6583a12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body {
  background-color: #0d0d0d;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
  color: #00ffcc;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  padding: 30px;
  background: #1a1a1a;
  box-shadow: 0 0 20px #00ffcc;
  border-radius: 10px;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #00ffff;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #66ffe0;
}

textarea {
  width: 100%;
  height: 120px;
  padding: 15px;
  font-size: 1rem;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #0f0f0f;
  border: 1px solid #00ffcc;
  color: #00ffcc;
  resize: vertical;
}

button {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #00ffcc;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #00e6b8;
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ccc;
}

.links a {
  color: #66ffe0;
  margin: 0 10px;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}