diff --git a/index.html b/index.html
index b2785bc..693bcba 100644
--- a/index.html
+++ b/index.html
@@ -6,6 +6,7 @@
http-equiv="origin-trial"
content="Anx9P4m5tzLOL/wLICKy/mA+DRyoSsTkyqmnK5t+S7oyw7A2SeBI2jO4LKqoQiQgChP2MTtqMNKofelMwvGtPQsAAABKeyJvcmlnaW4iOiJodHRwczovL2ttZWFucy5vcmc6NDQzIiwiZmVhdHVyZSI6IldlYkdQVSIsImV4cGlyeSI6MTY5MTcxMTk5OX0="
/>
+
diff --git a/style/style.css b/style/style.css
new file mode 100644
index 0000000..0070ba4
--- /dev/null
+++ b/style/style.css
@@ -0,0 +1,67 @@
+body {
+ font-family: Arial, sans-serif;
+ background-color: #f5f5f5;
+ margin: 0;
+ padding: 0;
+}
+h1 {
+ margin-top: 50px;
+ margin-bottom: 20px;
+ text-align: center;
+}
+p {
+ font-style: italic;
+ text-align: center;
+ color: #666;
+}
+a {
+ color: #666;
+ text-decoration: none;
+ border-bottom: 1px solid #666;
+}
+button {
+ background-color: #4CAF50;
+ color: white;
+ padding: 12px 20px;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ margin-left: 10px;
+}
+button:hover {
+ background-color: #3e8e41;
+}
+label {
+ display: inline-block;
+ width: 100px;
+ text-align: right;
+ margin-right: 10px;
+}
+input[type=number] {
+ width: 60px;
+ padding: 5px;
+ margin-right: 10px;
+ border-radius: 4px;
+ border: 1px solid #ccc;
+}
+#generateButton {
+ margin-top: 20px;
+}
+textarea {
+ resize: vertical;
+ width: 100%;
+ font-size: 16px;
+ padding: 10px;
+ border-radius: 4px;
+ border: 1px solid #ccc;
+}
+#prompt {
+ margin-top: 20px;
+ height: 250px;
+}
+footer {
+ margin-top: 50px;
+ text-align: center;
+ color: #999;
+ font-size: 14px;
+}
\ No newline at end of file