diff --git a/README.md b/README.md
index 83ce771..14521a1 100644
--- a/README.md
+++ b/README.md
@@ -1,22 +1,21 @@
-# π Project: Complex API 2
+# Explore Country
-### Goal: Use data returned from one api to make a request to another api and display the data returned
+A simple RESTful API for country data built with Javascript.
+It allows fetching country information such as name, capital, region, currency and UTC.
-### How to submit your code for review:
+## Features
-- Fork and clone this repo
-- Create a new branch called answer
-- Checkout answer branch
-- Push to your fork
-- Issue a pull request
-- Your pull request description should contain the following:
- - (1 to 5 no 3) I completed the challenge
- - (1 to 5 no 3) I feel good about my code
- - Anything specific on which you want feedback!
+- CORS enabled
+- Fetch data for all countries
+- Fetch detailed data for a single country by its code
+- Lightweight and easy to integrate into other projects
-Example:
-```
-I completed the challenge: 5
-I feel good about my code: 4
-I'm not sure if my constructors are setup cleanly...
-```
+
+
+
+## Installation
+
+```bash
+# Clone the repository
+git clone https://github.com/AngelBelRoth/api-country.git
+cd api-country
diff --git a/css/style.css b/css/style.css
new file mode 100644
index 0000000..a4d5f43
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,35 @@
+*{
+ margin: 0 0 1% 0;
+ padding: 0;
+ box-sizing: border-box;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+h1{
+ font-family: "Imperial Script", cursive;
+ font-size: 5rem;
+}
+
+input {
+ text-align: center;
+}
+
+.flag{
+ font-size: 7rem;
+}
+
+img{
+ display: block;
+ margin: 0 auto;
+ max-width: 500px;
+ max-width: 750px;
+}
+
+.googleMaps{
+ font-size: 11rem;
+ text-decoration: none;
+}
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..6d6ded1
--- /dev/null
+++ b/index.html
@@ -0,0 +1,38 @@
+
+
+
+