diff --git a/animals/css/global.css b/animals/css/global.css
new file mode 100644
index 0000000..69efeba
--- /dev/null
+++ b/animals/css/global.css
@@ -0,0 +1,93 @@
+@import url("./variables.css");
+
+*{padding: 0; margin: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif;}
+
+body, html{
+ width: 100%;
+ height: 100%;
+}
+
+a{
+ text-decoration: none;
+}
+
+header{
+ min-height: 5vh;
+ width: 100%;
+ background-color: var(--primary-color);
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 0.5em 1.5em;
+ border-bottom: 2px solid #000;
+}
+
+header > .header__logo > img {
+ width: 50px;
+}
+
+header > .header__menu > ul{
+ display: flex;
+ gap: 1em;
+}
+
+header > .header__menu > ul > li{
+ list-style: none;
+}
+
+header > .header__menu > ul > li > a{
+ list-style: none;
+ color: #FFF;
+ font-weight: bold;
+}
+
+main{
+ min-height: 87vh;
+ background-color: #CCC;
+}
+
+.container{
+ width: 100%;
+ min-height: 87vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+}
+
+footer{
+ min-height: 7vh;
+ background-color: var(--primary-color);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-top: 2px solid #000;
+}
+
+.main__table {
+ border-collapse: collapse;
+ width: 100%;
+ max-width: 800px;
+ margin: 0 auto;
+ font-family: Arial, sans-serif;
+ font-size: 14px;
+ box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
+ }
+
+ .main__table > thead {
+ background-color: #CCC;
+ border: 2px solid #000;
+ text-align: left;
+ padding: 1em;
+ }
+
+ .main__table > thead > tr th {
+ padding: 1em;
+ border: 2px solid #000;
+ }
+
+ .main__table > th, td {
+ padding: 10px;
+ text-align: left;
+ border: 2px solid #000;
+ }
diff --git a/animals/css/variables.css b/animals/css/variables.css
new file mode 100644
index 0000000..76122ee
--- /dev/null
+++ b/animals/css/variables.css
@@ -0,0 +1,3 @@
+:root{
+ --primary-color:#008080;
+}
\ No newline at end of file
diff --git a/animals/img/wild-animals.png b/animals/img/wild-animals.png
new file mode 100644
index 0000000..d638ff1
Binary files /dev/null and b/animals/img/wild-animals.png differ
diff --git a/animals/index.html b/animals/index.html
index 18ecdcb..456c50a 100644
--- a/animals/index.html
+++ b/animals/index.html
@@ -1 +1,74 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | First |
+ Last |
+ Handle |
+
+
+
+
+ | Mark |
+ Otto |
+ @mdo |
+
+
+ | Jacob |
+ Thornton |
+ @fat |
+
+
+ | Larry the Bird |
+ @twitter |
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/animals/pages/animals.html b/animals/pages/animals.html
new file mode 100644
index 0000000..d925ca9
--- /dev/null
+++ b/animals/pages/animals.html
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file